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