Package org.hibernate.boot.jaxb.hbm.spi
Enum JaxbHbmUnsavedValueVersionEnum
- java.lang.Object
-
- java.lang.Enum<JaxbHbmUnsavedValueVersionEnum>
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmUnsavedValueVersionEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<JaxbHbmUnsavedValueVersionEnum>
public enum JaxbHbmUnsavedValueVersionEnum extends Enum<JaxbHbmUnsavedValueVersionEnum>
Java class for UnsavedValueVersionEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UnsavedValueVersionEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="negative"/> <enumeration value="null"/> <enumeration value="undefined"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JaxbHbmUnsavedValueVersionEnum
fromValue(String v)
String
value()
static JaxbHbmUnsavedValueVersionEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static JaxbHbmUnsavedValueVersionEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEGATIVE
public static final JaxbHbmUnsavedValueVersionEnum NEGATIVE
-
NULL
public static final JaxbHbmUnsavedValueVersionEnum NULL
-
UNDEFINED
public static final JaxbHbmUnsavedValueVersionEnum UNDEFINED
-
-
Method Detail
-
values
public static JaxbHbmUnsavedValueVersionEnum[] 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 (JaxbHbmUnsavedValueVersionEnum c : JaxbHbmUnsavedValueVersionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JaxbHbmUnsavedValueVersionEnum 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
-
value
public String value()
-
fromValue
public static JaxbHbmUnsavedValueVersionEnum fromValue(String v)
-
-