public enum JaxbLockModeType extends Enum<JaxbLockModeType>
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 and Description |
---|
NONE |
OPTIMISTIC |
OPTIMISTIC_FORCE_INCREMENT |
PESSIMISTIC_FORCE_INCREMENT |
PESSIMISTIC_READ |
PESSIMISTIC_WRITE |
READ |
WRITE |
Modifier and Type | Method and Description |
---|---|
static JaxbLockModeType |
fromValue(String v) |
String |
value() |
static JaxbLockModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JaxbLockModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JaxbLockModeType READ
public static final JaxbLockModeType WRITE
public static final JaxbLockModeType OPTIMISTIC
public static final JaxbLockModeType OPTIMISTIC_FORCE_INCREMENT
public static final JaxbLockModeType PESSIMISTIC_READ
public static final JaxbLockModeType PESSIMISTIC_WRITE
public static final JaxbLockModeType PESSIMISTIC_FORCE_INCREMENT
public static final JaxbLockModeType NONE
public static JaxbLockModeType[] values()
for (JaxbLockModeType c : JaxbLockModeType.values()) System.out.println(c);
public static JaxbLockModeType 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 value()
public static JaxbLockModeType fromValue(String v)
Copyright © 2018 JBoss by Red Hat. All rights reserved.