public static enum ListGrid.SelectType extends Enum<ListGrid.SelectType>
| Enum Constant and Description |
|---|
MULTI_SELECT |
NONE |
SELECTIZE |
SINGLE_SELECT |
| Modifier and Type | Method and Description |
|---|---|
static ListGrid.SelectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListGrid.SelectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListGrid.SelectType SINGLE_SELECT
public static final ListGrid.SelectType MULTI_SELECT
public static final ListGrid.SelectType SELECTIZE
public static final ListGrid.SelectType NONE
public static ListGrid.SelectType[] values()
for (ListGrid.SelectType c : ListGrid.SelectType.values()) System.out.println(c);
public static ListGrid.SelectType 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. All rights reserved.