public static enum Rows.Selectable extends Enum<Rows.Selectable>
| Enum Constant and Description |
|---|
MULTIPLE
Multiple rows may be selected at one time.
|
NO
Rows are not selectable (the default).
|
SINGLE
Only a single row may be selected at one time.
|
| Modifier and Type | Method and Description |
|---|---|
static Rows.Selectable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rows.Selectable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rows.Selectable NO
public static final Rows.Selectable SINGLE
public static final Rows.Selectable MULTIPLE
public static Rows.Selectable[] values()
for (Rows.Selectable c : Rows.Selectable.values()) System.out.println(c);
public static Rows.Selectable 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 © 2018 Fujion Framework. All rights reserved.