public enum SelectionStyle extends java.lang.Enum<SelectionStyle> implements ValueEnum
| Enum Constant and Description |
|---|
MULTIPLE select one or more items |
NONE don't select at all |
SIMPLE select one or more items as a toggle so you don't need to hold down control keys to select more than one object |
SINGLE select only one item at a time |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static SelectionStyle | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static SelectionStyle[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final SelectionStyle NONE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static final SelectionStyle SINGLE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "single".
public static final SelectionStyle MULTIPLE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "multiple".
public static final SelectionStyle SIMPLE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "simple".
public static SelectionStyle[] values()
for (SelectionStyle c : SelectionStyle.values()) System.out.println(c);
public static SelectionStyle 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