public class OpEquals extends Comparator
Constructor and Description |
---|
OpEquals(JmesPathExpression lhsExpr,
JmesPathExpression rhsExpr) |
Modifier and Type | Method and Description |
---|---|
<Input,Output> |
accept(JmesPathVisitor<Input,Output> visitor,
Input input)
Delegates to either the CodeGen visitor(Comparator) or
Evaluation visitor(Comparator) based on the type of JmesPath
visitor
|
boolean |
matches(com.fasterxml.jackson.databind.JsonNode lhs,
com.fasterxml.jackson.databind.JsonNode rhs)
Checks whether lhs is equal to rhs
|
getLhsExpr, getRhsExpr
public OpEquals(JmesPathExpression lhsExpr, JmesPathExpression rhsExpr)
public <Input,Output> Output accept(JmesPathVisitor<Input,Output> visitor, Input input) throws InvalidTypeException
Input
- Input type for the visitor
CodeGen visitor: Void
Evaluation visitor: JsonNodeOutput
- Output type for the visitor
CodeGen visitor: String
Evaluation visitor: JsonNodevisitor
- CodeGen visitor or Evaluation visitorinput
- Input expression that needs to be evaluatedInvalidTypeException
public boolean matches(com.fasterxml.jackson.databind.JsonNode lhs, com.fasterxml.jackson.databind.JsonNode rhs)
matches
in class Comparator
lhs
- Lhs expressionrhs
- Rhs expression