public static enum ComboBoxConfig.Mode extends java.lang.Enum<ComboBoxConfig.Mode>
| Enum Constant and Description |
|---|
DROP_DOWN
Drop-down
|
DROP_DOWN_LIST
Drop-down list
|
SIMPLE
Simple
|
| Modifier and Type | Method and Description |
|---|---|
static ComboBoxConfig.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComboBoxConfig.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComboBoxConfig.Mode SIMPLE
public static final ComboBoxConfig.Mode DROP_DOWN
public static final ComboBoxConfig.Mode DROP_DOWN_LIST
public static ComboBoxConfig.Mode[] values()
for (ComboBoxConfig.Mode c : ComboBoxConfig.Mode.values()) System.out.println(c);
public static ComboBoxConfig.Mode 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