org.apache.openejb.jee.jpa
Enum LockModeType
java.lang.Object
java.lang.Enum<LockModeType>
org.apache.openejb.jee.jpa.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>
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
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 name
NullPointerException - if the argument is null
value
public String value()
fromValue
public static LockModeType fromValue(String v)
Copyright © 1999–2015 The Apache Software Foundation. All rights reserved.