public enum AuditTxType extends java.lang.Enum<AuditTxType>
| Enum Constant and Description |
|---|
NON_TX |
TX_SEPARATE_NO_MARKER |
TX_SEPARATE_WITH_MARKER |
TX_SHARED |
| Modifier and Type | Method and Description |
|---|---|
static AuditTxType |
fromString(java.lang.String strategyString) |
static java.lang.String |
safeString(AuditTxType strategy) |
static AuditTxType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuditTxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditTxType NON_TX
public static final AuditTxType TX_SHARED
public static final AuditTxType TX_SEPARATE_WITH_MARKER
public static final AuditTxType TX_SEPARATE_NO_MARKER
public static AuditTxType[] values()
for (AuditTxType c : AuditTxType.values()) System.out.println(c);
public static AuditTxType 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 nullpublic static AuditTxType fromString(java.lang.String strategyString)
public static java.lang.String safeString(AuditTxType strategy)