public static enum IdentityColumnProperties.GeneratedType extends java.lang.Enum<IdentityColumnProperties.GeneratedType>
| Enum Constant and Description |
|---|
ALWAYS
A new new value is always generated for this column, irresepective of its value at insert
|
BY_DEFAULT
A new new value is generated for this column if no other value is specified at insert
|
BY_DEFAULT_ON_NULL
A new new value is generated for this column if no other non-null value is specified at insert
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static IdentityColumnProperties.GeneratedType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IdentityColumnProperties.GeneratedType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final IdentityColumnProperties.GeneratedType ALWAYS
public static final IdentityColumnProperties.GeneratedType BY_DEFAULT
public static final IdentityColumnProperties.GeneratedType BY_DEFAULT_ON_NULL
public static IdentityColumnProperties.GeneratedType[] values()
for (IdentityColumnProperties.GeneratedType c : IdentityColumnProperties.GeneratedType.values())
System.out.println(c);
public static IdentityColumnProperties.GeneratedType 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 java.lang.String toString()
toString in class java.lang.Enum<IdentityColumnProperties.GeneratedType>