public enum CardinalityType extends Enum<CardinalityType> implements IAEnum
| Enum Constant and Description |
|---|
CONSTANT |
NOT_CONSTRAINED |
UNIQUE |
UNIQUE_AND_CONSTANT |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
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–2020 ODPi. All rights reserved.