public enum EBootstrapTextTransformType extends Enum<EBootstrapTextTransformType> implements com.helger.html.css.ICSSClassProvider
| Enum Constant and Description |
|---|
CAPITALIZE
Note how text-capitalize only changes the first letter of each word,
leaving the case of any other letters unaffected.
|
LOWERCASE |
UPPERCASE |
| Modifier and Type | Method and Description |
|---|---|
String |
getCSSClass() |
static EBootstrapTextTransformType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EBootstrapTextTransformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EBootstrapTextTransformType LOWERCASE
public static final EBootstrapTextTransformType UPPERCASE
public static final EBootstrapTextTransformType CAPITALIZE
public static EBootstrapTextTransformType[] values()
for (EBootstrapTextTransformType c : EBootstrapTextTransformType.values()) System.out.println(c);
public static EBootstrapTextTransformType 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.