public enum MultiPickerSelectionStyle extends java.lang.Enum<MultiPickerSelectionStyle> implements ValueEnum
MultiPickerItem
displays selected and unselected
option in a drop down pickList, or uses a shuttle interface
Enum Constant and Description |
---|
PICKLIST
Options will be displayed in a PickList
|
PICKTREE
Options will be displayed in a
TreeGrid . |
SHUTTLE
Options will be displayed in a
Shuttle |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static MultiPickerSelectionStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiPickerSelectionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiPickerSelectionStyle 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 MultiPickerSelectionStyle SHUTTLE
Shuttle
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "shuttle".
public static final MultiPickerSelectionStyle PICKTREE
TreeGrid
. Only suitable for hierarchical data.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "pickTree".
public static MultiPickerSelectionStyle[] values()
for (MultiPickerSelectionStyle c : MultiPickerSelectionStyle.values()) System.out.println(c);
public static MultiPickerSelectionStyle 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