public static enum Parser80.TransactionMode extends Enum<Parser80.TransactionMode>
Enum Constant and Description |
---|
BATCH |
FULL_XA |
NON_DURABLE_XA |
NON_XA |
NONE |
Modifier and Type | Method and Description |
---|---|
TransactionMode |
getMode() |
boolean |
isBatchingEnabled() |
boolean |
isRecoveryEnabled() |
boolean |
isXAEnabled() |
static Parser80.TransactionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser80.TransactionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser80.TransactionMode NONE
public static final Parser80.TransactionMode BATCH
public static final Parser80.TransactionMode NON_XA
public static final Parser80.TransactionMode NON_DURABLE_XA
public static final Parser80.TransactionMode FULL_XA
public static Parser80.TransactionMode[] values()
for (Parser80.TransactionMode c : Parser80.TransactionMode.values()) System.out.println(c);
public static Parser80.TransactionMode 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 TransactionMode getMode()
public boolean isXAEnabled()
public boolean isRecoveryEnabled()
public boolean isBatchingEnabled()
Copyright © 2022 JBoss, a division of Red Hat. All rights reserved.