public static enum HasParentChildAttribute.ParentChildEnum extends java.lang.Enum<HasParentChildAttribute.ParentChildEnum>
| Enum Constant and Description |
|---|
CHILDREN_FIRST
The children first.
|
PARENT_FIRST
The parent first.
|
UNDEFINED
The undefined.
|
| Modifier and Type | Method and Description |
|---|---|
static HasParentChildAttribute.ParentChildEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HasParentChildAttribute.ParentChildEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HasParentChildAttribute.ParentChildEnum UNDEFINED
public static final HasParentChildAttribute.ParentChildEnum PARENT_FIRST
public static final HasParentChildAttribute.ParentChildEnum CHILDREN_FIRST
public static HasParentChildAttribute.ParentChildEnum[] values()
for (HasParentChildAttribute.ParentChildEnum c : HasParentChildAttribute.ParentChildEnum.values()) System.out.println(c);
public static HasParentChildAttribute.ParentChildEnum 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 null