Package org.hibernate.annotations
Enum TimeZoneType
- java.lang.Object
-
- java.lang.Enum<TimeZoneType>
-
- org.hibernate.annotations.TimeZoneType
-
- All Implemented Interfaces:
Serializable
,Comparable<TimeZoneType>
public enum TimeZoneType extends Enum<TimeZoneType>
The type of storage to use for the time zone information.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeZoneType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TimeZoneType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZONE_ID
public static final TimeZoneType ZONE_ID
Stores the time zone id as String.
-
OFFSET
public static final TimeZoneType OFFSET
Stores the offset seconds of a timestamp as Integer.
-
-
Method Detail
-
values
public static TimeZoneType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimeZoneType c : TimeZoneType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeZoneType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-