public enum PickListItemIconPlacement extends java.lang.Enum<PickListItemIconPlacement> implements ValueEnum
PickListItemIconPlacement set such that the pickList does not
 render near-origin, possible location for rendering formItemIcons.| Enum Constant and Description | 
|---|
| BOTHicon will be displayed both inline (within the form item itself) and within the  pickerNavigationBar | 
| FORMITEMicon will be displayed inline within the form item itself (and not within the  pickerNavigationBar | 
| PICKERNAVIGATIONBARicon will be displayed in the  pickerNavigationBaronly (and not rendered inline within the formItem itself) | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static PickListItemIconPlacement | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static PickListItemIconPlacement[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PickListItemIconPlacement PICKERNAVIGATIONBAR
pickerNavigationBar only (and not rendered inline within the formItem itself)
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "pickerNavigationBar".
public static final PickListItemIconPlacement FORMITEM
pickerNavigationBar
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "formItem".
public static final PickListItemIconPlacement BOTH
pickerNavigationBar
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "both".
public static PickListItemIconPlacement[] values()
for (PickListItemIconPlacement c : PickListItemIconPlacement.values()) System.out.println(c);
public static PickListItemIconPlacement 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