public static enum Selectable.SelectionMode extends Enum<Selectable.SelectionMode>
| Enum Constant and Description |
|---|
MULTI
Multiple selection mode.
|
NONE
The selection is not active.
|
SINGLE
Single selection mode.
|
| Modifier and Type | Method and Description |
|---|---|
static Selectable.SelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Selectable.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Selectable.SelectionMode NONE
public static final Selectable.SelectionMode SINGLE
public static final Selectable.SelectionMode MULTI
public static Selectable.SelectionMode[] values()
for (Selectable.SelectionMode c : Selectable.SelectionMode.values()) System.out.println(c);
public static Selectable.SelectionMode 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 © 2019 The Holon Platform. All rights reserved.