public enum ListGridComponent extends java.lang.Enum<ListGridComponent> implements ValueEnum
ListGrid.gridComponents
.Enum Constant and Description |
---|
BODY
The body component for the grid.
|
FILTER_EDITOR
The standard filter-component displayed when
ListGrid.showFilterEditor is true |
HEADER
The header-component displayed when
ListGrid.showHeader
is true. |
SUMMARY_ROW
The summary-row component displayed when
ListGrid.showGridSummary is true. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static ListGridComponent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListGridComponent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListGridComponent FILTER_EDITOR
ListGrid.showFilterEditor
is true
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "filterEditor".
public static final ListGridComponent HEADER
ListGrid.showHeader
is true.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "header".
public static final ListGridComponent BODY
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "body".
public static final ListGridComponent SUMMARY_ROW
ListGrid.showGridSummary
is true.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "summaryRow".
public static ListGridComponent[] values()
for (ListGridComponent c : ListGridComponent.values()) System.out.println(c);
public static ListGridComponent 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