public static enum RequestPath.Type extends java.lang.Enum<RequestPath.Type>
Enum Constant and Description |
---|
INVALID |
OBJECT |
OBJECT_ATTRIBUTE |
OBJECT_ELEMENT |
OBJECT_ELEMENT_ATTRIBUTE |
QUERY |
Modifier and Type | Method and Description |
---|---|
static RequestPath.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestPath.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestPath.Type QUERY
public static final RequestPath.Type OBJECT
public static final RequestPath.Type OBJECT_ATTRIBUTE
public static final RequestPath.Type OBJECT_ELEMENT
public static final RequestPath.Type OBJECT_ELEMENT_ATTRIBUTE
public static final RequestPath.Type INVALID
public static RequestPath.Type[] values()
for (RequestPath.Type c : RequestPath.Type.values()) System.out.println(c);
public static RequestPath.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null