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
ConstructorsConstructorDescriptionBinaryExpression(JmespathExpression left, JmespathExpression right, int line, int column) -
Method Summary
Modifier and TypeMethodDescriptionbooleanfinal JmespathExpressiongetLeft()Gets the left side of the expression.final JmespathExpressiongetRight()Gets the right side of the expression.inthashCode()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
-