public enum ListGridViewStatePart extends java.lang.Enum<ListGridViewStatePart> implements ValueEnum
| Enum Constant and Description |
|---|
ALL All parts of the view state |
FIELD Field state |
GROUP Group state |
HILITE Hilite state |
SELECTED Selected state |
SORT Sort state |
USERCRITERIA Criteria state |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static ListGridViewStatePart | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static ListGridViewStatePart[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ListGridViewStatePart ALL
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "all".
public static final ListGridViewStatePart GROUP
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "group".
public static final ListGridViewStatePart FIELD
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "field".
public static final ListGridViewStatePart SELECTED
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "selected".
public static final ListGridViewStatePart SORT
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "sort".
public static final ListGridViewStatePart HILITE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "hilite".
public static final ListGridViewStatePart USERCRITERIA
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "userCriteria".
public static ListGridViewStatePart[] values()
for (ListGridViewStatePart c : ListGridViewStatePart.values()) System.out.println(c);
public static ListGridViewStatePart 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