Enum Parser.TransactionMode
- java.lang.Object
-
- java.lang.Enum<Parser.TransactionMode>
-
- org.infinispan.configuration.parsing.Parser.TransactionMode
-
- All Implemented Interfaces:
Serializable
,Comparable<Parser.TransactionMode>
- Enclosing class:
- Parser
public static enum Parser.TransactionMode extends Enum<Parser.TransactionMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATCH
FULL_XA
NON_DURABLE_XA
NON_XA
NONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Parser.TransactionMode
fromConfiguration(TransactionMode mode, boolean xaEnabled, boolean recoveryEnabled, boolean batchingEnabled)
TransactionMode
getMode()
boolean
isBatchingEnabled()
boolean
isRecoveryEnabled()
boolean
isXAEnabled()
static Parser.TransactionMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Parser.TransactionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Parser.TransactionMode NONE
-
BATCH
public static final Parser.TransactionMode BATCH
-
NON_XA
public static final Parser.TransactionMode NON_XA
-
NON_DURABLE_XA
public static final Parser.TransactionMode NON_DURABLE_XA
-
FULL_XA
public static final Parser.TransactionMode FULL_XA
-
-
Method Detail
-
values
public static Parser.TransactionMode[] 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 (Parser.TransactionMode c : Parser.TransactionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Parser.TransactionMode 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 nameNullPointerException
- if the argument is null
-
fromConfiguration
public static Parser.TransactionMode fromConfiguration(TransactionMode mode, boolean xaEnabled, boolean recoveryEnabled, boolean batchingEnabled)
-
getMode
public TransactionMode getMode()
-
isXAEnabled
public boolean isXAEnabled()
-
isRecoveryEnabled
public boolean isRecoveryEnabled()
-
isBatchingEnabled
public boolean isBatchingEnabled()
-
-