public enum EIdAccessType extends Enum<EIdAccessType>
Enum
class offers the available set of HTTP method node id
resource access types.Enum Constant and Description |
---|
FIRSTCHILD
Access to the first child node of the resource identified by a node id.
|
LASTCHILD
Access to the last child node of the resource identified by a node id.
|
LEFTSIBLING
Access to the left sibling node of the resource identified by a node id.
|
RIGHTSIBLING
Access to the right sibling node of the resource identified by a node id.
|
Modifier and Type | Method and Description |
---|---|
static EIdAccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EIdAccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EIdAccessType LEFTSIBLING
public static final EIdAccessType RIGHTSIBLING
public static final EIdAccessType FIRSTCHILD
public static final EIdAccessType LASTCHILD
public static EIdAccessType[] values()
for (EIdAccessType c : EIdAccessType.values()) System.out.println(c);
public static EIdAccessType 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 © 2013. All Rights Reserved.