public enum EBootstrapBorderType extends Enum<EBootstrapBorderType> implements com.helger.html.css.ICSSClassProvider
| Enum Constant and Description |
|---|
BORDER
All 4 sides
|
BOTTOM_BORDER
Only bottom border
|
LEFT_BORDER
Only left border
|
NO_BOTTOM_BORDER
No bottom border
|
NO_LEFT_BORDER
No left border
|
NO_RIGHT_BORDER
No right border
|
NO_TOP_BORDER
No top border
|
NONE
No border
|
RIGHT_BORDER
Only right border
|
TOP_BORDER
Only top border
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCSSClass() |
static EBootstrapBorderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EBootstrapBorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EBootstrapBorderType BORDER
public static final EBootstrapBorderType TOP_BORDER
public static final EBootstrapBorderType RIGHT_BORDER
public static final EBootstrapBorderType BOTTOM_BORDER
public static final EBootstrapBorderType LEFT_BORDER
public static final EBootstrapBorderType NONE
public static final EBootstrapBorderType NO_TOP_BORDER
public static final EBootstrapBorderType NO_RIGHT_BORDER
public static final EBootstrapBorderType NO_BOTTOM_BORDER
public static final EBootstrapBorderType NO_LEFT_BORDER
public static EBootstrapBorderType[] values()
for (EBootstrapBorderType c : EBootstrapBorderType.values()) System.out.println(c);
public static EBootstrapBorderType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2020 Philip Helger. All rights reserved.