public enum DataGridSelectionMode extends Enum<DataGridSelectionMode>
Enum Constant and Description |
---|
EXTENDED
Multiple items in the DataGrid can be selected at the same time.
|
SINGLE
Only one item in the DataGrid can be selected at a time.
|
Modifier and Type | Method and Description |
---|---|
static DataGridSelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataGridSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataGridSelectionMode SINGLE
public static final DataGridSelectionMode EXTENDED
public static DataGridSelectionMode[] values()
for (DataGridSelectionMode c : DataGridSelectionMode.values()) System.out.println(c);
public static DataGridSelectionMode 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.