public static enum HierarchyTree.HierarchyRelationship extends Enum<HierarchyTree.HierarchyRelationship>
| Enum Constant and Description |
|---|
HAS_NO_DIRECT_RELATION |
IS_ABOVE |
IS_BELOW |
IS_THE_SAME_AS |
| Modifier and Type | Method and Description |
|---|---|
static HierarchyTree.HierarchyRelationship |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HierarchyTree.HierarchyRelationship[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HierarchyTree.HierarchyRelationship IS_ABOVE
public static final HierarchyTree.HierarchyRelationship IS_BELOW
public static final HierarchyTree.HierarchyRelationship IS_THE_SAME_AS
public static final HierarchyTree.HierarchyRelationship HAS_NO_DIRECT_RELATION
public static HierarchyTree.HierarchyRelationship[] values()
for (HierarchyTree.HierarchyRelationship c : HierarchyTree.HierarchyRelationship.values()) System.out.println(c);
public static HierarchyTree.HierarchyRelationship 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 © 2017–2021 JBoss by Red Hat. All rights reserved.