public enum CardinalityType extends Enum<CardinalityType>
| Enum Constant and Description |
|---|
constant |
not_constrained |
unique |
unique_and_constant |
| Modifier and Type | Method and Description |
|---|---|
static CardinalityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardinalityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardinalityType unique_and_constant
public static final CardinalityType not_constrained
public static final CardinalityType unique
public static final CardinalityType constant
public static CardinalityType[] values()
for (CardinalityType c : CardinalityType.values()) System.out.println(c);
public static CardinalityType 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 © 2018–2019 ODPi. All rights reserved.