Enum Class MetricsCollector.PhysicalTransactionBeginFailurePhase
java.lang.Object
java.lang.Enum<MetricsCollector.PhysicalTransactionBeginFailurePhase>
com.pyranid.MetricsCollector.PhysicalTransactionBeginFailurePhase
- All Implemented Interfaces:
Serializable, Comparable<MetricsCollector.PhysicalTransactionBeginFailurePhase>, Constable
- Enclosing interface:
MetricsCollector
public static enum MetricsCollector.PhysicalTransactionBeginFailurePhase
extends Enum<MetricsCollector.PhysicalTransactionBeginFailurePhase>
Physical transaction begin phase that failed.
- Since:
- 4.2.0
- Author:
- Mark Allen
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConnection acquisition from the configuredDataSourcefailed.Reading the connection's initial autocommit setting failed.Reading the connection's initial transaction isolation failed.Reading the connection's initial read-only setting failed.Disabling autocommit for the transaction failed.Applying the requested transaction isolation failed.Applying the requested read-only setting failed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ACQUIRE_CONNECTION
Connection acquisition from the configuredDataSourcefailed. -
READ_INITIAL_AUTOCOMMIT
Reading the connection's initial autocommit setting failed. -
READ_INITIAL_ISOLATION
Reading the connection's initial transaction isolation failed. -
READ_INITIAL_READ_ONLY
Reading the connection's initial read-only setting failed. -
SET_AUTOCOMMIT_FALSE
Disabling autocommit for the transaction failed. -
SET_ISOLATION
Applying the requested transaction isolation failed. -
SET_READ_ONLY
Applying the requested read-only setting failed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-