Enum LockModeType
- java.lang.Object
-
- java.lang.Enum<LockModeType>
-
- org.hibernate.jpamodelgen.xml.jaxb.LockModeType
-
- All Implemented Interfaces:
Serializable
,Comparable<LockModeType>
public enum LockModeType extends Enum<LockModeType>
Java class for lock-mode-type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="lock-mode-type"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="READ"/> <enumeration value="WRITE"/> <enumeration value="OPTIMISTIC"/> <enumeration value="OPTIMISTIC_FORCE_INCREMENT"/> <enumeration value="PESSIMISTIC_READ"/> <enumeration value="PESSIMISTIC_WRITE"/> <enumeration value="PESSIMISTIC_FORCE_INCREMENT"/> <enumeration value="NONE"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
OPTIMISTIC
OPTIMISTIC_FORCE_INCREMENT
PESSIMISTIC_FORCE_INCREMENT
PESSIMISTIC_READ
PESSIMISTIC_WRITE
READ
WRITE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LockModeType
fromValue(String v)
String
value()
static LockModeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static LockModeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final LockModeType READ
-
WRITE
public static final LockModeType WRITE
-
OPTIMISTIC
public static final LockModeType OPTIMISTIC
-
OPTIMISTIC_FORCE_INCREMENT
public static final LockModeType OPTIMISTIC_FORCE_INCREMENT
-
PESSIMISTIC_READ
public static final LockModeType PESSIMISTIC_READ
-
PESSIMISTIC_WRITE
public static final LockModeType PESSIMISTIC_WRITE
-
PESSIMISTIC_FORCE_INCREMENT
public static final LockModeType PESSIMISTIC_FORCE_INCREMENT
-
NONE
public static final LockModeType NONE
-
-
Method Detail
-
values
public static LockModeType[] 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 (LockModeType c : LockModeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LockModeType 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 LockModeType fromValue(String v)
-
-