public enum SourceType extends Enum<SourceType>
| Enum Constant and Description |
|---|
DB
Get the timestamp from the database.
|
VM
Get the timestamp from the current VM.
|
| Modifier and Type | Method and Description |
|---|---|
String |
typeName()
Get the corresponding Hibernate
VersionType name. |
static SourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceType VM
public static final SourceType DB
public static SourceType[] values()
for (SourceType c : SourceType.values()) System.out.println(c);
public static SourceType 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 nullpublic String typeName()
VersionType name.Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.