public enum RowSpanSelectionMode extends java.lang.Enum<RowSpanSelectionMode> implements ValueEnum
ListGrid.useRowSpanStyling.| Enum Constant and Description |
|---|
BOTH when a cell is clicked on, selects any cells in any other columns which are at least partially spanned by the clicked cell |
FORWARD when a cell is clicked on, select any cells in subsequent columns which are at least partially spanned by the clicked cell |
OUTERSPAN behaves like "forward", except as though the cell in the first column was clicked instead. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static RowSpanSelectionMode | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static RowSpanSelectionMode[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final RowSpanSelectionMode FORWARD
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "forward".
public static final RowSpanSelectionMode 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 RowSpanSelectionMode OUTERSPAN
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "outerSpan".
public static RowSpanSelectionMode[] values()
for (RowSpanSelectionMode c : RowSpanSelectionMode.values()) System.out.println(c);
public static RowSpanSelectionMode 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