public enum DataNodeSiblingPositionType extends Enum<DataNodeSiblingPositionType>
| Enum Constant and Description |
|---|
FIRST_INSTANCE
Denotes that the node is the first instance in the sibling list.
|
LAST_INSTANCE
Denotes that the node is the last instance in the sibling list.
|
MIDDLE_INSTANCE
Denotes that the node is one of the middle instances.
|
NOT_MULTI_INSTANCE_NODE
Denotes that the given node is not a multi-instance or leaf-list node.
|
SINGLE_INSTANCE_IN_MULTI_NODE
Denotes that the given node is the only instance in the multi-instance
data node.
|
UNKNOWN_TYPE
Used for error case or as uninitialized data.
|
| Modifier and Type | Method and Description |
|---|---|
static DataNodeSiblingPositionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataNodeSiblingPositionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataNodeSiblingPositionType NOT_MULTI_INSTANCE_NODE
public static final DataNodeSiblingPositionType FIRST_INSTANCE
public static final DataNodeSiblingPositionType LAST_INSTANCE
public static final DataNodeSiblingPositionType MIDDLE_INSTANCE
public static final DataNodeSiblingPositionType SINGLE_INSTANCE_IN_MULTI_NODE
public static final DataNodeSiblingPositionType UNKNOWN_TYPE
public static DataNodeSiblingPositionType[] values()
for (DataNodeSiblingPositionType c : DataNodeSiblingPositionType.values()) System.out.println(c);
public static DataNodeSiblingPositionType 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 © 2018. All rights reserved.