Class BinaryExpression
java.lang.Object
software.amazon.smithy.jmespath.JmespathExpression
software.amazon.smithy.jmespath.ast.BinaryExpression
- Direct Known Subclasses:
AndExpression
,ComparatorExpression
,FilterProjectionExpression
,OrExpression
,ProjectionExpression
,Subexpression
Abstract class representing expressions that have a left and right side.
-
Constructor Summary
ConstructorDescriptionBinaryExpression
(JmespathExpression left, JmespathExpression right, int line, int column) -
Method Summary
Modifier and TypeMethodDescriptionboolean
final JmespathExpression
getLeft()
Gets the left side of the expression.final JmespathExpression
getRight()
Gets the right side of the expression.int
hashCode()
toString()
-
Constructor Details
-
BinaryExpression
-
-
Method Details
-
getLeft
Gets the left side of the expression.- Returns:
- Returns the expression on the left.
-
getRight
Gets the right side of the expression.- Returns:
- Returns the expression on the right.
-
equals
-
hashCode
public int hashCode() -
toString
-