public enum AutoSelectionModel extends java.lang.Enum<AutoSelectionModel> implements ValueEnum
CubeGrid
indicating which cells in the body should be
selected when row or column headers are selected.Enum Constant and Description |
---|
BOTH
Rows and Columns will be selected on header selection
|
COLS
Columns will be selected on column-header selection
|
NONE
Selecting row or column headers will not select cells in the body.
|
ROWS
Rows will be selected on row-header selection
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static AutoSelectionModel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoSelectionModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoSelectionModel BOTH
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 final AutoSelectionModel ROWS
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "rows".
public static final AutoSelectionModel COLS
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "cols".
public static final AutoSelectionModel NONE
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static AutoSelectionModel[] values()
for (AutoSelectionModel c : AutoSelectionModel.values()) System.out.println(c);
public static AutoSelectionModel 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