public static enum RelExpr.RelationalOp extends java.lang.Enum<RelExpr.RelationalOp>
Enum Constant and Description |
---|
dif |
eq |
gt |
gte |
literalBuilder |
lt |
lte |
none |
unify |
Modifier and Type | Method and Description |
---|---|
static RelExpr.RelationalOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelExpr.RelationalOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelExpr.RelationalOp none
public static final RelExpr.RelationalOp gt
public static final RelExpr.RelationalOp gte
public static final RelExpr.RelationalOp lt
public static final RelExpr.RelationalOp lte
public static final RelExpr.RelationalOp eq
public static final RelExpr.RelationalOp dif
public static final RelExpr.RelationalOp unify
public static final RelExpr.RelationalOp literalBuilder
public static RelExpr.RelationalOp[] values()
for (RelExpr.RelationalOp c : RelExpr.RelationalOp.values()) System.out.println(c);
public static RelExpr.RelationalOp 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 null