public enum StructuredPathSegmentKind extends Enum<StructuredPathSegmentKind>
| Enum Constant and Description |
|---|
ARRAY_ELEMENT |
FIELD |
MAP_KEY |
MAP_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static StructuredPathSegmentKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredPathSegmentKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredPathSegmentKind ARRAY_ELEMENT
public static final StructuredPathSegmentKind FIELD
public static final StructuredPathSegmentKind MAP_KEY
public static final StructuredPathSegmentKind MAP_VALUE
public static StructuredPathSegmentKind[] values()
for (StructuredPathSegmentKind c : StructuredPathSegmentKind.values()) System.out.println(c);
public static StructuredPathSegmentKind 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 null