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