public static enum ToggleDialog.ButtonHidingType extends java.lang.Enum<ToggleDialog.ButtonHidingType>
Enum Constant and Description |
---|
ALWAYS_HIDDEN
Buttons are always hidden
|
ALWAYS_SHOWN
Buttons are always shown (default)
|
DYNAMIC
Buttons are dynamically hidden, i.e.
|
Modifier and Type | Method and Description |
---|---|
static ToggleDialog.ButtonHidingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ToggleDialog.ButtonHidingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToggleDialog.ButtonHidingType ALWAYS_SHOWN
public static final ToggleDialog.ButtonHidingType ALWAYS_HIDDEN
public static final ToggleDialog.ButtonHidingType DYNAMIC
public static ToggleDialog.ButtonHidingType[] values()
for (ToggleDialog.ButtonHidingType c : ToggleDialog.ButtonHidingType.values()) System.out.println(c);
public static ToggleDialog.ButtonHidingType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null