public enum PickerIconName extends java.lang.Enum<PickerIconName> implements ValueEnum
Enum Constant and Description |
---|
CLEAR
Picker icon to clear a field value.
|
COMBOBOX
Picker icon for a general combobox.
|
DATE
Picker icon for date value.
|
REFRESH
Picker icon to refresh a value.
|
SEARCH
Picker icon to start a search.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static PickerIconName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PickerIconName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PickerIconName CLEAR
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "clear".
public static final PickerIconName SEARCH
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "search".
public static final PickerIconName REFRESH
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "refresh".
public static final PickerIconName DATE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "date".
public static final PickerIconName COMBOBOX
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "comboBox".
public static PickerIconName[] values()
for (PickerIconName c : PickerIconName.values()) System.out.println(c);
public static PickerIconName 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