public enum CellSelectionType extends Enum<CellSelectionType>
CellSelectionEvent
and CellSelectionUpdateEvent
Modifier and Type | Method and Description |
---|---|
static CellSelectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellSelectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellSelectionType CELL
public static final CellSelectionType ROW
public static final CellSelectionType COLUMN
public static final CellSelectionType ALL
public static CellSelectionType[] values()
for (CellSelectionType c : CellSelectionType.values()) System.out.println(c);
public static CellSelectionType 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 © 2020. All rights reserved.