public enum BootstrapSize extends Enum<BootstrapSize>
| Modifier and Type | Method and Description |
|---|---|
String |
apply(String cssClass) |
String |
apply(String before,
String after) |
static BootstrapSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootstrapSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootstrapSize LG
public static final BootstrapSize MD
public static final BootstrapSize SM
public static final BootstrapSize NONE
public static BootstrapSize[] values()
for (BootstrapSize c : BootstrapSize.values()) System.out.println(c);
public static BootstrapSize 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 © 2018. All rights reserved.