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