public enum GridSelectionMode extends Enum<GridSelectionMode>
Enum Constant and Description |
---|
FREE
The user can select any cells
|
LISTBOX_MULTIPLE
The user can select multiple rows
|
LISTBOX_SINGLE
The user can select single rows
|
ROWS_AND_COLUMNS
The user can select rows and columns
|
Modifier and Type | Method and Description |
---|---|
static GridSelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridSelectionMode ROWS_AND_COLUMNS
public static final GridSelectionMode LISTBOX_SINGLE
public static final GridSelectionMode LISTBOX_MULTIPLE
public static final GridSelectionMode FREE
public static GridSelectionMode[] values()
for (GridSelectionMode c : GridSelectionMode.values()) System.out.println(c);
public static GridSelectionMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright 2009-2012 Micro Focus. All Rights Reserved.