public enum FilterTypes extends Enum<FilterTypes>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DECIMAL |
DOUBLE |
ENUM |
FLOAT |
INTEGER |
LONG |
SHORT |
STRING |
TIME |
| Modifier and Type | Method and Description |
|---|---|
static FilterTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterTypes STRING
public static final FilterTypes INTEGER
public static final FilterTypes LONG
public static final FilterTypes DOUBLE
public static final FilterTypes SHORT
public static final FilterTypes FLOAT
public static final FilterTypes DECIMAL
public static final FilterTypes BOOLEAN
public static final FilterTypes DATE
public static final FilterTypes TIME
public static final FilterTypes ENUM
public static FilterTypes[] values()
for (FilterTypes c : FilterTypes.values()) System.out.println(c);
public static FilterTypes 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–2022 Dominokit. All rights reserved.