Uses of Enum
org.jparsec.examples.sql.ast.Op
Packages that use Op
-
Uses of Op in org.jparsec.examples.sql.ast
Fields in org.jparsec.examples.sql.ast declared as OpModifier and TypeFieldDescriptionfinal Op
BinaryExpression.operator
final Op
BinaryRelationalExpression.operator
final Op
UnaryExpression.operator
final Op
UnaryRelationalExpression.operator
Methods in org.jparsec.examples.sql.ast that return OpModifier and TypeMethodDescriptionstatic Op
Returns the enum constant of this type with the specified name.static Op[]
Op.values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.jparsec.examples.sql.ast with parameters of type OpModifierConstructorDescriptionBinaryExpression
(Expression left, Op op, Expression right) BinaryRelationalExpression
(Expression expression, Op operator, Relation relation) UnaryExpression
(Op operator, Expression operand) UnaryRelationalExpression
(Relation relation, Op operator) -
Uses of Op in org.jparsec.examples.sql.parser
Methods in org.jparsec.examples.sql.parser with parameters of type OpModifier and TypeMethodDescriptionprivate static Parser
<BinaryOperator<Expression>> private static Parser
<Expression> ExpressionParser.compare
(Parser<Expression> operand, String name, Op op) utility methodsprivate static Parser
<UnaryOperator<Expression>>