Interface BinaryExpression
- All Superinterfaces:
Expression
Represents a binary expression node in the expression tree.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionReturns anExpression
subtree of the left operation.Returns the binary expression's operation.Returns anExpression
subtree of the right operation.Methods inherited from interface com.liferay.portal.odata.filter.expression.Expression
accept
-
Method Details
-
getLeftOperationExpression
Expression getLeftOperationExpression()Returns anExpression
subtree of the left operation.- Returns:
- Expression sub tree of the left operation
-
getOperation
BinaryExpression.Operation getOperation()Returns the binary expression's operation.- Returns:
- the operation of the binary Expression
-
getRightOperationExpression
Expression getRightOperationExpression()Returns anExpression
subtree of the right operation.- Returns:
- the expression subtree
-