public static enum CompareCondition.Operator extends Enum<CompareCondition.Operator>
| Modifier and Type | Method and Description |
|---|---|
static CompareCondition.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareCondition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareCondition.Operator LT
public static final CompareCondition.Operator GT
public static final CompareCondition.Operator LTE
public static final CompareCondition.Operator GTE
public static CompareCondition.Operator[] values()
for (CompareCondition.Operator c : CompareCondition.Operator.values()) System.out.println(c);
public static CompareCondition.Operator 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 © 2015–2016 Red Hat, Inc.. All rights reserved.