public enum JmesPathType extends Enum<JmesPathType>
| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
NULL |
NUMBER |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static JmesPathType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmesPathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmesPathType NUMBER
public static final JmesPathType STRING
public static final JmesPathType BOOLEAN
public static final JmesPathType ARRAY
public static final JmesPathType OBJECT
public static final JmesPathType NULL
public static JmesPathType[] values()
for (JmesPathType c : JmesPathType.values()) System.out.println(c);
public static JmesPathType 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 nullpublic String toString()
toString in class Enum<JmesPathType>Copyright © 2016–2021. All rights reserved.