public static enum BasicControlPalette.DisplayMode extends java.lang.Enum<BasicControlPalette.DisplayMode>
| Enum Constant and Description |
|---|
DEFAULT_OPEN |
INITIALLY_CLOSED |
INITIALLY_OPEN |
ONLY_ONE_OPEN |
| Modifier and Type | Method and Description |
|---|---|
static BasicControlPalette.DisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasicControlPalette.DisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicControlPalette.DisplayMode DEFAULT_OPEN
public static final BasicControlPalette.DisplayMode INITIALLY_OPEN
public static final BasicControlPalette.DisplayMode INITIALLY_CLOSED
public static final BasicControlPalette.DisplayMode ONLY_ONE_OPEN
public static BasicControlPalette.DisplayMode[] values()
for (BasicControlPalette.DisplayMode c : BasicControlPalette.DisplayMode.values()) System.out.println(c);
public static BasicControlPalette.DisplayMode 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 nullhttp://code.google.com/p/jam-lib/