Uses of Class
com.evolvedbinary.xpath.parser.ast.AbstractOperand
-
Packages that use AbstractOperand Package Description com.evolvedbinary.xpath.parser.ast com.evolvedbinary.xpath.parser.ast.partial -
-
Uses of AbstractOperand in com.evolvedbinary.xpath.parser.ast
Subclasses of AbstractOperand in com.evolvedbinary.xpath.parser.ast Modifier and Type Class Description classAbstractOperandWithOps<T>Created by aretter on 15/02/2016.classAdditiveExprCreated by aretter on 12/02/2016.classAndExprCreated by aretter on 15/02/2016.classCastableExprCreated by aretter on 11/02/2016.classCastExprCreated by aretter on 11/02/2016.classComparisonExprCreated by aretter on 13/02/2016.classInstanceOfExprCreated by aretter on 11/02/2016.classIntersectExceptExprCreated by aretter on 12/02/2016.classMultiplicativeExprCreated by aretter on 12/02/2016.classOrExprCreated by aretter on 15/02/2016.classRangeExprCreated by aretter on 12/02/2016.classTreatExprCreated by aretter on 11/02/2016.classUnaryExprCreated by aretter on 11/02/2016.classUnionExprCreated by aretter on 12/02/2016.classValueExprCreated by aretter on 11/02/2016.Fields in com.evolvedbinary.xpath.parser.ast declared as AbstractOperand Modifier and Type Field Description AbstractOperandAdditiveExpr.AdditiveOp. operandAbstractOperandIntersectExceptExpr.IntersectExceptOp. operandAbstractOperandMultiplicativeExpr.MultiplicativeOp. operandMethods in com.evolvedbinary.xpath.parser.ast with parameters of type AbstractOperand Modifier and Type Method Description protected voidAndExpr. describeOp(StringBuilder builder, AbstractOperand andOp)protected voidOrExpr. describeOp(StringBuilder builder, AbstractOperand orOp)protected voidUnionExpr. describeOp(StringBuilder builder, AbstractOperand unionOp)Constructor parameters in com.evolvedbinary.xpath.parser.ast with type arguments of type AbstractOperand Constructor Description AndExpr(AbstractOperand operand, List<? extends AbstractOperand> andOps)OrExpr(AbstractOperand operand, List<? extends AbstractOperand> orOps)UnionExpr(AbstractOperand operand, List<? extends AbstractOperand> unionOps) -
Uses of AbstractOperand in com.evolvedbinary.xpath.parser.ast.partial
Methods in com.evolvedbinary.xpath.parser.ast.partial with parameters of type AbstractOperand Modifier and Type Method Description ComparisonExprPartialComparisonExpr.PartialComparisonExpr1. complete(AbstractOperand right)RangeExprPartialRangeExpr. complete(AbstractOperand to)Method parameters in com.evolvedbinary.xpath.parser.ast.partial with type arguments of type AbstractOperand Modifier and Type Method Description AndExprPartialAndExpr. complete(List<AbstractOperand> andOps)OrExprPartialOrExpr. complete(List<AbstractOperand> orOps)UnionExprPartialUnionExpr. complete(List<AbstractOperand> unionOps)Constructors in com.evolvedbinary.xpath.parser.ast.partial with parameters of type AbstractOperand Constructor Description PartialAdditiveExpr(AbstractOperand operand)PartialAndExpr(AbstractOperand operand)PartialComparisonExpr(AbstractOperand left)PartialIntersectExceptExpr(AbstractOperand operand)PartialMultiplicativeExpr(AbstractOperand operand)PartialOrExpr(AbstractOperand operand)PartialRangeExpr(AbstractOperand from)PartialUnionExpr(AbstractOperand operand)
-