Interface UnaryExpression
- All Superinterfaces:
CommonExpression,Visitable
- All Known Implementing Classes:
UnaryExpressionImpl
Represents a unary expression node in the expression tree
A unary expression node is inserted in the expression tree for any valid
ODATA unary operator in UnaryOperator (e.g. for "not or "-" )
-
Method Summary
Methods inherited from interface org.apache.olingo.odata2.api.uri.expression.CommonExpression
getEdmType, getKind, getUriLiteral, setEdmType
-
Method Details
-
getOperator
UnaryOperator getOperator()- Returns:
- Returns the operator object that represents the used operator
- See Also:
-
getOperand
CommonExpression getOperand()- Returns:
- Returns the expression node of the operand of the unary operator
- See Also:
-