public static enum Expression.OpType extends java.lang.Enum<Expression.OpType>
| Enum Constant and Description | 
|---|
| OP_AND | 
| OP_BETWEEN | 
| OP_DIV | 
| OP_EQ | 
| OP_GE | 
| OP_GT | 
| OP_IN | 
| OP_LE | 
| OP_LT | 
| OP_MATCH | 
| OP_MINUS | 
| OP_MOD | 
| OP_NE | 
| OP_NOT | 
| OP_NULL | 
| OP_OR | 
| OP_PLUS | 
| OP_TIMES | 
| TERM_COL | 
| TERM_CONST | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | toString() | 
| static Expression.OpType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Expression.OpType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Expression.OpType OP_PLUS
public static final Expression.OpType OP_MINUS
public static final Expression.OpType OP_TIMES
public static final Expression.OpType OP_DIV
public static final Expression.OpType OP_MOD
public static final Expression.OpType OP_EQ
public static final Expression.OpType OP_NE
public static final Expression.OpType OP_GT
public static final Expression.OpType OP_GE
public static final Expression.OpType OP_LT
public static final Expression.OpType OP_LE
public static final Expression.OpType OP_MATCH
public static final Expression.OpType OP_IN
public static final Expression.OpType OP_BETWEEN
public static final Expression.OpType OP_NULL
public static final Expression.OpType OP_NOT
public static final Expression.OpType OP_AND
public static final Expression.OpType OP_OR
public static final Expression.OpType TERM_COL
public static final Expression.OpType TERM_CONST
public static Expression.OpType[] values()
for (Expression.OpType c : Expression.OpType.values()) System.out.println(c);
public static Expression.OpType 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<Expression.OpType>Copyright © 2007-2025 The Apache Software Foundation