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