public enum FieldAppearance extends java.lang.Enum<FieldAppearance> implements ValueEnum
| Enum Constant and Description | 
|---|
DISABLED
Disable field 
 | 
HIDDEN
Hide field 
 | 
READONLY
Show in read-only appearance 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getValue()  | 
static FieldAppearance | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static FieldAppearance[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FieldAppearance READONLY
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "READONLY".
public static final FieldAppearance HIDDEN
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "HIDDEN".
public static final FieldAppearance DISABLED
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "DISABLED".
public static FieldAppearance[] values()
for (FieldAppearance c : FieldAppearance.values()) System.out.println(c);
public static FieldAppearance 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