public enum BootboxSize extends Enum<BootboxSize>
Modifier and Type | Method and Description |
---|---|
String |
getSize() |
static BootboxSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootboxSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootboxSize LARGE
public static final BootboxSize SMALL
public static BootboxSize[] values()
for (BootboxSize c : BootboxSize.values()) System.out.println(c);
public static BootboxSize 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 © 2017. All rights reserved.