public static enum Expression.RelationalOp extends Enum<Expression.RelationalOp>
Enum Constant and Description |
---|
EQUAL |
GREATER |
GREATEREQUAL |
INVALID |
LESS |
LESSEQUAL |
NOTEQUAL |
Modifier and Type | Method and Description |
---|---|
static Expression.RelationalOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expression.RelationalOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.RelationalOp LESSEQUAL
public static final Expression.RelationalOp LESS
public static final Expression.RelationalOp GREATEREQUAL
public static final Expression.RelationalOp GREATER
public static final Expression.RelationalOp EQUAL
public static final Expression.RelationalOp NOTEQUAL
public static final Expression.RelationalOp INVALID
public static Expression.RelationalOp[] values()
for (Expression.RelationalOp c : Expression.RelationalOp.values()) System.out.println(c);
public static Expression.RelationalOp 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 © 2020 The Apache Software Foundation. All rights reserved.