public enum SelectItemsMode extends java.lang.Enum<SelectItemsMode> implements ValueEnum
| Enum Constant and Description | 
|---|
ITEM
select an individual item if the item itself it clicked on, but not its title cell 
 | 
ITEMORTITLE
select an individual item if either the item or its title cell is clicked on. 
 | 
NEVER
never allow selection of an individual item 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getValue()  | 
static SelectItemsMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SelectItemsMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SelectItemsMode ITEM
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "item".
public static final SelectItemsMode ITEMORTITLE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "itemOrTitle".
public static final SelectItemsMode NEVER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "never".
public static SelectItemsMode[] values()
for (SelectItemsMode c : SelectItemsMode.values()) System.out.println(c);
public static SelectItemsMode 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