public enum EnumFilterbyOperator extends java.lang.Enum<EnumFilterbyOperator>
| Enum Constant and Description |
|---|
GREATER_OR_EQUAL
The GREATER_OR_EQUAL.
|
GREATER_THAN
The GREATER_THAN.
|
LESS_OR_EQUAL
The LESS_OR_EQUAL.
|
LESS_THAN
The LESS_THAN.
|
MEMBER_OF
The MEMBER_OF.
|
NOT_MEMBER_OF
The NOT_MEMBER_OF.
|
RANGE_EXCL
The RANGE_EXCL.
|
RANGE_INCL
The RANGE_INCL.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumFilterbyOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFilterbyOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFilterbyOperator RANGE_INCL
public static final EnumFilterbyOperator RANGE_EXCL
public static final EnumFilterbyOperator GREATER_OR_EQUAL
public static final EnumFilterbyOperator LESS_OR_EQUAL
public static final EnumFilterbyOperator GREATER_THAN
public static final EnumFilterbyOperator LESS_THAN
public static final EnumFilterbyOperator MEMBER_OF
public static final EnumFilterbyOperator NOT_MEMBER_OF
public static EnumFilterbyOperator[] values()
for (EnumFilterbyOperator c : EnumFilterbyOperator.values()) System.out.println(c);
public static EnumFilterbyOperator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()