Class OrExpression
java.lang.Object
software.amazon.smithy.jmespath.JmespathExpression
software.amazon.smithy.jmespath.ast.BinaryExpression
software.amazon.smithy.jmespath.ast.OrExpression
Or expression that returns the expression that returns a truthy value.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionOrExpression(JmespathExpression left, JmespathExpression right) OrExpression(JmespathExpression left, JmespathExpression right, int line, int column)  - 
Method Summary
Modifier and TypeMethodDescription<T> Taccept(ExpressionVisitor<T> visitor) Visits a node using a double-dispatch visitor.Methods inherited from class software.amazon.smithy.jmespath.ast.BinaryExpression
equals, getLeft, getRight, hashCode, toString 
- 
Constructor Details
- 
OrExpression
 - 
OrExpression
 
 - 
 - 
Method Details
- 
accept
Description copied from class:JmespathExpressionVisits a node using a double-dispatch visitor.- Specified by:
 acceptin classJmespathExpression- Type Parameters:
 T- Type of value the visitor returns.- Parameters:
 visitor- Visitor to accept on the node.- Returns:
 - Returns the result of applying the visitor.
 
 
 -