public interface Expression
| Modifier and Type | Method and Description |
|---|---|
com.fasterxml.jackson.databind.JsonNode |
apply(com.fasterxml.jackson.databind.JsonNode input)
Evaluate the expression on the given JSON input.
|
com.fasterxml.jackson.databind.JsonNode |
apply(java.util.Map<java.lang.String,com.fasterxml.jackson.databind.JsonNode> variables,
com.fasterxml.jackson.databind.JsonNode input)
Evaluate the expression on the given JSON input, with the given
predefined variables set.
|
com.fasterxml.jackson.databind.JsonNode apply(com.fasterxml.jackson.databind.JsonNode input)
input - The JSON input to evaluate the expression on.com.fasterxml.jackson.databind.JsonNode apply(java.util.Map<java.lang.String,com.fasterxml.jackson.databind.JsonNode> variables,
com.fasterxml.jackson.databind.JsonNode input)
variables - Variable bindings visible inside the expression.input - The JSON input to evaluate the expression on.