| Package | Description |
|---|---|
| org.n52.svalbard.odata.expr |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanExpr
Interface to denote that this expression possibly evaluates to a boolean value.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BinaryExpr<T>
Class to hold a binary expression.
|
class |
BooleanBinaryExpr
Class to hold a binary boolean expression
|
class |
BooleanUnaryExpr
Class to hold a unary boolean expression.
|
class |
ComparisonExpr
Class to hold a comparison expression.
|
class |
MemberExpr
Class to hold a member or value reference expression.
|
class |
MethodCallExpr
Class to hold a method call expression.
|
class |
UnaryExpr<T>
Class to represent a unary expression.
|
class |
ValueExpr
Expression representing a value.
|
| Modifier and Type | Method and Description |
|---|---|
Expr |
BinaryExpr.getLeft()
Get the left operand.
|
Expr |
UnaryExpr.getOperand()
Get the operand
|
Expr |
BinaryExpr.getRight()
Get the right operand.
|
| Modifier and Type | Method and Description |
|---|---|
List<Expr> |
MethodCallExpr.getParameters()
Get the parameters of this method call.
|
| Constructor and Description |
|---|
BinaryExpr(T operator,
Expr left,
Expr right)
Create a new
BinaryExpr. |
ComparisonExpr(FilterConstants.ComparisonOperator operator,
Expr left,
Expr right)
Create a new
ComparisonExpr. |
UnaryExpr(T operator,
Expr operand)
Create a new
UnaryExpr. |
| Constructor and Description |
|---|
MethodCallExpr(String name,
List<Expr> parameters)
Create a new
MethodCallExpr. |
Copyright © 2015–2018 52°North Initiative for Geospatial Open Source Software GmbH. All rights reserved.