public enum RelationType extends Enum<RelationType>
| Enum Constant and Description |
|---|
DOWN_RELATED
A down-related node
|
ROOT
A root
|
UP_RELATED
An up-related node
|
| Modifier and Type | Method and Description |
|---|---|
static RelationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationType UP_RELATED
public static final RelationType DOWN_RELATED
public static final RelationType ROOT
public static RelationType[] values()
for (RelationType c : RelationType.values()) System.out.println(c);
public static RelationType 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 © 2006–2020 Esito AS. All rights reserved.