public static enum DataNode.Type extends Enum<DataNode.Type>
| Enum Constant and Description |
|---|
MULTI_INSTANCE_LEAF_VALUE_NODE
Multi instance leaf node.
|
MULTI_INSTANCE_NODE
Multi instance node.
|
SINGLE_INSTANCE_LEAF_VALUE_NODE
Single instance leaf node.
|
SINGLE_INSTANCE_NODE
Single instance node.
|
| Modifier and Type | Method and Description |
|---|---|
static DataNode.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataNode.Type SINGLE_INSTANCE_NODE
public static final DataNode.Type MULTI_INSTANCE_NODE
public static final DataNode.Type SINGLE_INSTANCE_LEAF_VALUE_NODE
public static final DataNode.Type MULTI_INSTANCE_LEAF_VALUE_NODE
public static DataNode.Type[] values()
for (DataNode.Type c : DataNode.Type.values()) System.out.println(c);
public static DataNode.Type 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.