public enum NodeTypeValues extends java.lang.Enum<NodeTypeValues>
List of type node used in the composition of a Folder
| Modifier and Type | Method and Description |
|---|---|
static NodeTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeTypeValues _D
Dependant node
public static final NodeTypeValues _L
Reference node
public static NodeTypeValues 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 nullpublic static NodeTypeValues[] values()
for (NodeTypeValues c : NodeTypeValues.values()) System.out.println(c);