public enum DataGridSelectionUnit extends Enum<DataGridSelectionUnit>
Enum Constant and Description |
---|
CELL
Only cells are selectable.
|
CELL_OR_ROW_HEADER
Cells and rows are selectable.
|
FULL_ROW
Only full rows are selectable.
|
Modifier and Type | Method and Description |
---|---|
static DataGridSelectionUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataGridSelectionUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataGridSelectionUnit CELL
public static final DataGridSelectionUnit FULL_ROW
public static final DataGridSelectionUnit CELL_OR_ROW_HEADER
public static DataGridSelectionUnit[] values()
for (DataGridSelectionUnit c : DataGridSelectionUnit.values()) System.out.println(c);
public static DataGridSelectionUnit 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.