Serializable
, Comparable<InfixExprNode.InfixOperator>
public static enum InfixExprNode.InfixOperator extends Enum<InfixExprNode.InfixOperator>
Enum Constant | Description |
---|---|
AND |
|
DIV |
|
EXCEPT |
|
FOLLOWS |
|
GENERAL_EQ |
|
GENERAL_GE |
|
GENERAL_GT |
|
GENERAL_LE |
|
GENERAL_LT |
|
GENERAL_NE |
|
IDIV |
|
INTERSECT |
|
IS |
|
MINUS |
|
MOD |
|
MULTIPLY |
|
OR |
|
PLUS |
|
PRECEDES |
|
RANGE |
|
UNION |
|
VALUE_EQ |
|
VALUE_GE |
|
VALUE_GT |
|
VALUE_LE |
|
VALUE_LT |
|
VALUE_NE |
Modifier and Type | Method | Description |
---|---|---|
static InfixExprNode.InfixOperator |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static InfixExprNode.InfixOperator[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfixExprNode.InfixOperator OR
public static final InfixExprNode.InfixOperator AND
public static final InfixExprNode.InfixOperator GENERAL_EQ
public static final InfixExprNode.InfixOperator GENERAL_NE
public static final InfixExprNode.InfixOperator GENERAL_LT
public static final InfixExprNode.InfixOperator GENERAL_LE
public static final InfixExprNode.InfixOperator GENERAL_GT
public static final InfixExprNode.InfixOperator GENERAL_GE
public static final InfixExprNode.InfixOperator VALUE_EQ
public static final InfixExprNode.InfixOperator VALUE_NE
public static final InfixExprNode.InfixOperator VALUE_LT
public static final InfixExprNode.InfixOperator VALUE_LE
public static final InfixExprNode.InfixOperator VALUE_GT
public static final InfixExprNode.InfixOperator VALUE_GE
public static final InfixExprNode.InfixOperator RANGE
public static final InfixExprNode.InfixOperator PLUS
public static final InfixExprNode.InfixOperator MINUS
public static final InfixExprNode.InfixOperator MULTIPLY
public static final InfixExprNode.InfixOperator DIV
public static final InfixExprNode.InfixOperator IDIV
public static final InfixExprNode.InfixOperator MOD
public static final InfixExprNode.InfixOperator UNION
public static final InfixExprNode.InfixOperator INTERSECT
public static final InfixExprNode.InfixOperator EXCEPT
public static final InfixExprNode.InfixOperator IS
public static final InfixExprNode.InfixOperator PRECEDES
public static final InfixExprNode.InfixOperator FOLLOWS
public static InfixExprNode.InfixOperator[] values()
for (InfixExprNode.InfixOperator c : InfixExprNode.InfixOperator.values()) System.out.println(c);
public static InfixExprNode.InfixOperator 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 © 2019 Apache Software Foundation. All rights reserved.