public static enum AgroalConnectionFactoryConfiguration.TransactionIsolation extends Enum<AgroalConnectionFactoryConfiguration.TransactionIsolation>
| Enum Constant and Description |
|---|
NONE |
READ_COMMITTED |
READ_UNCOMMITTED |
REPEATABLE_READ |
SERIALIZABLE |
| Modifier and Type | Method and Description |
|---|---|
static AgroalConnectionFactoryConfiguration.TransactionIsolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgroalConnectionFactoryConfiguration.TransactionIsolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgroalConnectionFactoryConfiguration.TransactionIsolation NONE
public static final AgroalConnectionFactoryConfiguration.TransactionIsolation READ_UNCOMMITTED
public static final AgroalConnectionFactoryConfiguration.TransactionIsolation READ_COMMITTED
public static final AgroalConnectionFactoryConfiguration.TransactionIsolation REPEATABLE_READ
public static final AgroalConnectionFactoryConfiguration.TransactionIsolation SERIALIZABLE
public static AgroalConnectionFactoryConfiguration.TransactionIsolation[] values()
for (AgroalConnectionFactoryConfiguration.TransactionIsolation c : AgroalConnectionFactoryConfiguration.TransactionIsolation.values()) System.out.println(c);
public static AgroalConnectionFactoryConfiguration.TransactionIsolation 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 nullCopyright © 2017 JBoss by Red Hat. All rights reserved.