public enum FilterableType extends Enum<FilterableType>
| Enum Constant and Description |
|---|
multi
filterable by collection of values
|
none
not filterable
|
single
filterable by single value
|
| Modifier and Type | Method and Description |
|---|---|
static FilterableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterableType none
public static final FilterableType single
public static final FilterableType multi
public static FilterableType[] values()
for (FilterableType c : FilterableType.values()) System.out.println(c);
public static FilterableType 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 © 2016–2018 Taimos GmbH. All rights reserved.