public static enum TableCanvas.SelectionMode extends java.lang.Enum<TableCanvas.SelectionMode>
Enum Constant and Description |
---|
CELL
In this mode, the user selects individual cells in the canvas.
|
COLUMN
In this mode, the user selects individual columns in the canvas.
|
ROW
In this mode, the user selects individual rows in the canvas.
|
Modifier and Type | Method and Description |
---|---|
static TableCanvas.SelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableCanvas.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableCanvas.SelectionMode CELL
public static final TableCanvas.SelectionMode COLUMN
public static final TableCanvas.SelectionMode ROW
public static TableCanvas.SelectionMode[] values()
for (TableCanvas.SelectionMode c : TableCanvas.SelectionMode.values()) System.out.println(c);
public static TableCanvas.SelectionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2008-2022 University of Manitoba.