public enum MultipleAppearance extends java.lang.Enum<MultipleAppearance> implements ValueEnum
| Enum Constant and Description |
|---|
GRID a grid that displays all items in-place. |
PICKLIST a drop-down picklist that allows multiple choices by clicking on a checkbox next to each item |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static MultipleAppearance | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static MultipleAppearance[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final MultipleAppearance PICKLIST
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "picklist".
public static final MultipleAppearance GRID
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "grid".
public static MultipleAppearance[] values()
for (MultipleAppearance c : MultipleAppearance.values()) System.out.println(c);
public static MultipleAppearance 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