public static enum Comparison.Operator extends Enum<Comparison.Operator>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Comparison.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Comparison.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Comparison.Operator EQ
public static final Comparison.Operator NE
public static final Comparison.Operator LT
public static final Comparison.Operator LE
public static final Comparison.Operator GT
public static final Comparison.Operator GE
public static Comparison.Operator[] values()
for (Comparison.Operator c : Comparison.Operator.values()) System.out.println(c);
public static Comparison.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 nullpublic String toString()
toString
in class Enum<Comparison.Operator>
Copyright © 2019. All rights reserved.