public enum FieldOperatorType extends Enum<FieldOperatorType>
Enum Constant and Description |
---|
ALPHABETICAL
ALPHABETICAL OPERATOR TYPE
|
DATE
DATE OPERATOR TYPE
|
NUMBER
NUMBER OPERATOR TYPE
|
Modifier and Type | Method and Description |
---|---|
static FieldOperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldOperatorType ALPHABETICAL
public static final FieldOperatorType NUMBER
public static final FieldOperatorType DATE
public static FieldOperatorType[] values()
for (FieldOperatorType c : FieldOperatorType.values()) System.out.println(c);
public static FieldOperatorType 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 © 2022 DEISER. All Rights Reserved.