Uses of Class
org.jparsec.examples.sql.ast.Op
-
Packages that use Op Package Description org.jparsec.examples.sql.ast org.jparsec.examples.sql.parser -
-
Uses of Op in org.jparsec.examples.sql.ast
Fields in org.jparsec.examples.sql.ast declared as Op Modifier and Type Field Description OpBinaryExpression. operatorOpBinaryRelationalExpression. operatorOpUnaryExpression. operatorOpUnaryRelationalExpression. operatorMethods in org.jparsec.examples.sql.ast that return Op Modifier and Type Method Description static OpOp. valueOf(java.lang.String name)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 Op Constructor Description BinaryExpression(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 Op Modifier and Type Method Description private static Parser<java.util.function.BinaryOperator<Expression>>ExpressionParser. binary(java.lang.String name, Op op)private static Parser<Expression>ExpressionParser. compare(Parser<Expression> operand, java.lang.String name, Op op)utility methodsprivate static Parser<java.util.function.UnaryOperator<Expression>>ExpressionParser. unary(java.lang.String name, Op op)
-