Uses of Interface
org.n52.svalbard.odata.core.expr.Expr
-
-
Uses of Expr in org.n52.svalbard.odata.core
Methods in org.n52.svalbard.odata.core that return Expr Modifier and Type Method Description ExprSTAQueryOptionVisitor. visitAnyExpr(STAQueryOptionsGrammar.AnyExprContext ctx)ExprSTAQueryOptionVisitor. visitEqExpr(STAQueryOptionsGrammar.EqExprContext ctx)ExprSTAQueryOptionVisitor. visitGeExpr(STAQueryOptionsGrammar.GeExprContext ctx)ExprSTAQueryOptionVisitor. visitGtExpr(STAQueryOptionsGrammar.GtExprContext ctx)ExprSTAQueryOptionVisitor. visitLeExpr(STAQueryOptionsGrammar.LeExprContext ctx)ExprSTAQueryOptionVisitor. visitLtExpr(STAQueryOptionsGrammar.LtExprContext ctx)ExprSTAQueryOptionVisitor. visitNeExpr(STAQueryOptionsGrammar.NeExprContext ctx)ExprSTAQueryOptionVisitor. visitParenExpr(STAQueryOptionsGrammar.ParenExprContext ctx) -
Uses of Expr in org.n52.svalbard.odata.core.expr
Subinterfaces of Expr in org.n52.svalbard.odata.core.expr Modifier and Type Interface Description interfaceDirectTextExprInterface for TextExpressions that can be represented directly by a String.interfaceTextExprClasses in org.n52.svalbard.odata.core.expr that implement Expr Modifier and Type Class Description classBinaryExpr<T>Class to hold a binary expression.classGeoValueExprclassMemberExprClass to hold a member or value reference expression.classMethodCallExprClass to hold a method call expression.classStringValueExprExpression representing a value.classUnaryExpr<T>Class to represent a unary expression.Methods in org.n52.svalbard.odata.core.expr that return Expr Modifier and Type Method Description ExprBinaryExpr. getLeft()Get the left operand.ExprUnaryExpr. getOperand()Get the operandExprBinaryExpr. getRight()Get the right operand.Methods in org.n52.svalbard.odata.core.expr that return types with arguments of type Expr Modifier and Type Method Description List<Expr>MethodCallExpr. getParameters()Get the parameters of this method call.Constructors in org.n52.svalbard.odata.core.expr with parameters of type Expr Constructor Description BinaryExpr(T operator, Expr left, Expr right)Create a newBinaryExpr.MethodCallExpr(String name, Expr... parameter)Create a newMethodCallExpr.UnaryExpr(T operator, Expr operand)Create a newUnaryExpr.Constructor parameters in org.n52.svalbard.odata.core.expr with type arguments of type Expr Constructor Description MethodCallExpr(String name, List<Expr> parameters)Create a newMethodCallExpr. -
Uses of Expr in org.n52.svalbard.odata.core.expr.arithmetic
Subinterfaces of Expr in org.n52.svalbard.odata.core.expr.arithmetic Modifier and Type Interface Description interfaceArithmeticExprInterface to denote that Expression can possibly be used in arithmetic operations.Classes in org.n52.svalbard.odata.core.expr.arithmetic that implement Expr Modifier and Type Class Description classNumericValueExprExpression representing a value.classSimpleArithmeticExpr -
Uses of Expr in org.n52.svalbard.odata.core.expr.bool
Subinterfaces of Expr in org.n52.svalbard.odata.core.expr.bool Modifier and Type Interface Description interfaceBooleanExprInterface to denote that this expression possibly evaluates to a boolean value.Classes in org.n52.svalbard.odata.core.expr.bool that implement Expr Modifier and Type Class Description classBooleanBinaryExprClass to hold a binary boolean expressionclassBooleanUnaryExprClass to hold a unary boolean expression.classComparisonExprClass to hold a comparison expression.Constructors in org.n52.svalbard.odata.core.expr.bool with parameters of type Expr Constructor Description ComparisonExpr(FilterConstants.ComparisonOperator operator, Expr left, Expr right)Create a newComparisonExpr. -
Uses of Expr in org.n52.svalbard.odata.core.expr.temporal
Subinterfaces of Expr in org.n52.svalbard.odata.core.expr.temporal Modifier and Type Interface Description interfaceTemporalExprClasses in org.n52.svalbard.odata.core.expr.temporal that implement Expr Modifier and Type Class Description classTimeValueExprHolds a TimeValue directly or reference to a property containing TimeValue
-