public static enum NodeChildData.Cardinality extends java.lang.Enum<NodeChildData.Cardinality>
Modifier and Type | Method and Description |
---|---|
boolean |
isMany() |
boolean |
isOne() |
static NodeChildData.Cardinality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeChildData.Cardinality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeChildData.Cardinality ONE
public static final NodeChildData.Cardinality MANY
public static NodeChildData.Cardinality[] values()
for (NodeChildData.Cardinality c : NodeChildData.Cardinality.values()) System.out.println(c);
public static NodeChildData.Cardinality 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 boolean isMany()
public boolean isOne()