public enum FilterTypeNumericOperatorsEnum extends Enum<FilterTypeNumericOperatorsEnum> implements NamedEnum
| Enum Constant and Description |
|---|
DOES_NOT_EQUAL |
EQUALS |
GREATER_THAN |
GREATER_THAN_EQUAL_TO |
IS_BETWEEN |
IS_NOT_BETWEEN |
LESS_THAN |
LESS_THAN_EQUAL_TO |
| Modifier and Type | Method and Description |
|---|---|
static FilterTypeNumericOperatorsEnum |
getByEnumConstantName(String name) |
static FilterTypeNumericOperatorsEnum |
getByName(String name) |
String |
getName() |
static FilterTypeNumericOperatorsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterTypeNumericOperatorsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterTypeNumericOperatorsEnum EQUALS
public static final FilterTypeNumericOperatorsEnum DOES_NOT_EQUAL
public static final FilterTypeNumericOperatorsEnum GREATER_THAN
public static final FilterTypeNumericOperatorsEnum GREATER_THAN_EQUAL_TO
public static final FilterTypeNumericOperatorsEnum LESS_THAN
public static final FilterTypeNumericOperatorsEnum LESS_THAN_EQUAL_TO
public static final FilterTypeNumericOperatorsEnum IS_BETWEEN
public static final FilterTypeNumericOperatorsEnum IS_NOT_BETWEEN
public static FilterTypeNumericOperatorsEnum[] values()
for (FilterTypeNumericOperatorsEnum c : FilterTypeNumericOperatorsEnum.values()) System.out.println(c);
public static FilterTypeNumericOperatorsEnum 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 nullpublic static FilterTypeNumericOperatorsEnum getByName(String name)
public static FilterTypeNumericOperatorsEnum getByEnumConstantName(String name)
Copyright © 2017. All rights reserved.