public enum FieldType extends Enum<FieldType>
| Enum Constant and Description |
|---|
CheckBox |
DataChooser |
DateField |
DecimalField |
IntegerField |
ListBox |
RadioButton |
RoleUsers |
TextArea |
TextField |
UserList |
| Modifier and Type | Method and Description |
|---|---|
static FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldType TextField
public static final FieldType DataChooser
public static final FieldType CheckBox
public static final FieldType RadioButton
public static final FieldType DateField
public static final FieldType DecimalField
public static final FieldType IntegerField
public static final FieldType TextArea
public static final FieldType ListBox
public static final FieldType UserList
public static final FieldType RoleUsers
public static FieldType[] values()
for (FieldType c : FieldType.values()) System.out.println(c);
public static FieldType 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 Suncode. All rights reserved.