JmesPathRuntime.Value |
JmesPathRuntime.Value.and(JmesPathRuntime.Value rhs) |
Perform an AND comparison between this value and another one:
https://jmespath.org/specification.html#or-expressions
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.compare(String comparison,
JmesPathRuntime.Value rhs) |
Compare this value to another value, using the specified comparison operator:
https://jmespath.org/specification.html#comparison-operators
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.constant(Object constant) |
Convert this value to a new constant value, discarding the current value.
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.constant(JmesPathRuntime.Value value) |
Convert this value to a new constant value, discarding the current value.
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.contains(JmesPathRuntime.Value rhs) |
Execute the contains function, with this value as the first parameter:
https://jmespath.org/specification.html#contains
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.field(String fieldName) |
Retrieve an identifier from this value: https://jmespath.org/specification.html#identifiers
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.filter(Function<JmesPathRuntime.Value,JmesPathRuntime.Value> predicate) |
Filter this value: https://jmespath.org/specification.html#filter-expressions
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.flatten() |
Execute a flattening expression on this value: https://jmespath.org/specification.html#flatten-operator
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.keys() |
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.length() |
Execute the length function, with this value as the first parameter:
https://jmespath.org/specification.html#length
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.multiSelectList(Function<JmesPathRuntime.Value,JmesPathRuntime.Value>... functions) |
Perform a multi-select list expression on this value:
https://jmespath.org/specification.html#multiselect-list
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.not() |
Perform a NOT conversion on this value: https://jmespath.org/specification.html#not-expressions
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.or(JmesPathRuntime.Value rhs) |
Perform an OR comparison between this value and another one:
https://jmespath.org/specification.html#or-expressions
|
JmesPathRuntime.Value |
JmesPathRuntime.Value.wildcard() |
Execute a wildcard expression on this value: https://jmespath.org/specification.html#wildcard-expressions
|