public enum OperationType extends java.lang.Enum<OperationType>
| Enum Constant and Description |
|---|
NON_TX |
TX_AUDIT_STORE_SHARED |
TX_AUDIT_STORE_SYNC |
TX_NON_SYNC |
| Modifier and Type | Method and Description |
|---|---|
static OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationType NON_TX
public static final OperationType TX_AUDIT_STORE_SHARED
public static final OperationType TX_AUDIT_STORE_SYNC
public static final OperationType TX_NON_SYNC
public static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);
public static OperationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null