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 SummaryConstructorsConstructorDescriptionOrExpression(JmespathExpression left, JmespathExpression right) OrExpression(JmespathExpression left, JmespathExpression right, int line, int column) 
- 
Method SummaryModifier and TypeMethodDescription<T> Taccept(ExpressionVisitor<T> visitor) Visits a node using a double-dispatch visitor.Methods inherited from class software.amazon.smithy.jmespath.ast.BinaryExpressionequals, getLeft, getRight, hashCode, toString
- 
Constructor Details- 
OrExpression
- 
OrExpression
 
- 
- 
Method Details- 
acceptDescription copied from class:JmespathExpressionVisits a node using a double-dispatch visitor.- Specified by:
- acceptin class- JmespathExpression
- 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.
 
 
-