public static enum DslJsonExtractor.JsonQueryLanguage extends Enum<DslJsonExtractor.JsonQueryLanguage>
| Enum Constant and Description |
|---|
JMES_PATH
Specifies to use JMESPath.
|
JSON_PATH
Specifies to use JSONPath.
|
| Modifier and Type | Method and Description |
|---|---|
static DslJsonExtractor.JsonQueryLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslJsonExtractor.JsonQueryLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslJsonExtractor.JsonQueryLanguage JMES_PATH
Check JMESPath site for more details.
public static final DslJsonExtractor.JsonQueryLanguage JSON_PATH
public static DslJsonExtractor.JsonQueryLanguage[] values()
for (DslJsonExtractor.JsonQueryLanguage c : DslJsonExtractor.JsonQueryLanguage.values()) System.out.println(c);
public static DslJsonExtractor.JsonQueryLanguage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.