public enum TableSelectionType extends Enum<TableSelectionType>
Enum Constant and Description |
---|
MULTIPLE_INTERVAL_SELECTION
可选择多列/行
|
NO_SELECTION
无法选择
|
SINGLE_SELECTION
可选择一列/行
|
Modifier and Type | Method and Description |
---|---|
static TableSelectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableSelectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableSelectionType NO_SELECTION
public static final TableSelectionType SINGLE_SELECTION
public static final TableSelectionType MULTIPLE_INTERVAL_SELECTION
public static TableSelectionType[] values()
for (TableSelectionType c : TableSelectionType.values()) System.out.println(c);
public static TableSelectionType 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.