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