public enum MultiSelectMode extends Enum<MultiSelectMode>
| Enum Constant and Description |
|---|
DEFAULT
The default behavior of the multi select mode
|
SIMPLE
The previous more simple behavior of the multi select
|
| Modifier and Type | Method and Description |
|---|---|
static MultiSelectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiSelectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiSelectMode DEFAULT
public static final MultiSelectMode SIMPLE
public static MultiSelectMode[] values()
for (MultiSelectMode c : MultiSelectMode.values()) System.out.println(c);
public static MultiSelectMode 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 © 2017 Vaadin Ltd. All rights reserved.