public enum FieldTypeImpl extends java.lang.Enum<FieldTypeImpl> implements IFieldTypeImpl
| Enum Constant and Description |
|---|
FORM |
LIST_BOX |
PASSWORD_BOX |
RADIO_BUTTONS |
TEXT_AREA |
TEXT_BOX |
| Modifier and Type | Method and Description |
|---|---|
abstract BurocratField |
buildField(IClient client,
IArg arg) |
static FieldTypeImpl |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldTypeImpl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldTypeImpl TEXT_BOX
public static final FieldTypeImpl TEXT_AREA
public static final FieldTypeImpl PASSWORD_BOX
public static final FieldTypeImpl LIST_BOX
public static final FieldTypeImpl RADIO_BUTTONS
public static final FieldTypeImpl FORM
public static FieldTypeImpl[] values()
for (FieldTypeImpl c : FieldTypeImpl.values()) System.out.println(c);
public static FieldTypeImpl 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 nullpublic abstract BurocratField buildField(IClient client, IArg arg)
buildField in interface IFieldTypeImpl