public enum ComboBoxValueType extends Enum<ComboBoxValueType>
| Modifier and Type | Method and Description |
|---|---|
static ComboBoxValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComboBoxValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComboBoxValueType STRING
public static final ComboBoxValueType ENUM
public static final ComboBoxValueType OBJECT
public static final ComboBoxValueType TEMPLATE
public final String label
public static ComboBoxValueType[] values()
for (ComboBoxValueType c : ComboBoxValueType.values()) System.out.println(c);
public static ComboBoxValueType 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.