public enum ToggleType extends Enum<ToggleType> implements Style
ButtonGroup toggle behavior.| Modifier and Type | Method and Description |
|---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this
constant.
|
static ToggleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToggleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToggleType NONE
public static final ToggleType RADIO
public static final ToggleType CHECKBOX
public static ToggleType[] values()
for (ToggleType c : ToggleType.values()) System.out.println(c);
public static ToggleType 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 © 2016. All rights reserved.