public enum GridSelectionType extends java.lang.Enum<GridSelectionType>
| Enum Constant and Description |
|---|
MULTI
Allow multiple selections
|
SINGLE
Only one row or cell can be selected
|
| Modifier and Type | Method and Description |
|---|---|
static GridSelectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GridSelectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridSelectionType SINGLE
public static final GridSelectionType MULTI
public static GridSelectionType[] values()
for (GridSelectionType c : GridSelectionType.values()) System.out.println(c);
public static GridSelectionType 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