public enum ComparisonOperator extends java.lang.Enum<ComparisonOperator>
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
GREATER_THAN_OR_EQUALS_TO |
LESS_THAN |
LESS_THAN_OR_EQUALS_TO |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static ComparisonOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOperator LESS_THAN
public static final ComparisonOperator LESS_THAN_OR_EQUALS_TO
public static final ComparisonOperator GREATER_THAN
public static final ComparisonOperator GREATER_THAN_OR_EQUALS_TO
public static final ComparisonOperator EQUALS
public static final ComparisonOperator NOT_EQUALS
public static ComparisonOperator[] values()
for (ComparisonOperator c : ComparisonOperator.values()) System.out.println(c);
public static ComparisonOperator 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 nullCopyright © 2019. All rights reserved.