public enum ForeignKeyRestrictionType extends java.lang.Enum<ForeignKeyRestrictionType>
| Enum Constant and Description |
|---|
COLLECTION_SIZE_EQ |
ID_EQ |
| Modifier and Type | Method and Description |
|---|---|
static ForeignKeyRestrictionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ForeignKeyRestrictionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForeignKeyRestrictionType ID_EQ
public static final ForeignKeyRestrictionType COLLECTION_SIZE_EQ
public static ForeignKeyRestrictionType[] values()
for (ForeignKeyRestrictionType c : ForeignKeyRestrictionType.values()) System.out.println(c);
public static ForeignKeyRestrictionType 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 nullCopyright © 2018. All Rights Reserved.