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