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
 
 public abstract class BinaryExpression extends JmespathExpression Abstract class representing expressions that have a left and right side.
- 
- 
Constructor SummaryConstructors Constructor Description BinaryExpression(JmespathExpression left, JmespathExpression right, int line, int column)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)JmespathExpressiongetLeft()Gets the left side of the expression.JmespathExpressiongetRight()Gets the right side of the expression.inthashCode()java.lang.StringtoString()
 
- 
- 
- 
Constructor Detail- 
BinaryExpressionpublic BinaryExpression(JmespathExpression left, JmespathExpression right, int line, int column) 
 
- 
 - 
Method Detail- 
getLeftpublic final JmespathExpression getLeft() Gets the left side of the expression.- Returns:
- Returns the expression on the left.
 
 - 
getRightpublic final JmespathExpression getRight() Gets the right side of the expression.- Returns:
- Returns the expression on the right.
 
 - 
equalspublic boolean equals(java.lang.Object o) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-