Enum Constant and Description |
---|
EQ
Equals
|
GE
Greator than or Equal
|
GT
Greator Than
|
LE
Less than or Equal
|
LT
Less Than
|
NE
Not Equals
|
Modifier and Type | Method and Description |
---|---|
RelOp |
reverse() |
java.lang.String |
toString()
Returns one of "=", "!=", "<", ">=", ">", or "<=".
|
static RelOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelOp EQ
public static final RelOp NE
public static final RelOp LT
public static final RelOp GE
public static final RelOp GT
public static final RelOp LE
public static RelOp[] values()
for (RelOp c : RelOp.values()) System.out.println(c);
public static RelOp 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 toString()
toString
in class java.lang.Enum<RelOp>
public RelOp reverse()
Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.