Enum TransactionOperationFailed.FinalErrorToRaise
- java.lang.Object
-
- java.lang.Enum<TransactionOperationFailed.FinalErrorToRaise>
-
- com.couchbase.transactions.error.external.TransactionOperationFailed.FinalErrorToRaise
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TransactionOperationFailed.FinalErrorToRaise>
- Enclosing class:
- TransactionOperationFailed
@Internal public static enum TransactionOperationFailed.FinalErrorToRaise extends java.lang.Enum<TransactionOperationFailed.FinalErrorToRaise>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TRANSACTION_COMMIT_AMBIGUOUS
TRANSACTION_EXPIRED
TRANSACTION_FAILED
TRANSACTION_FAILED_POST_COMMIT
This will currently result in returning success to the application, but unstagingCompleted() will be false.TRANSACTION_SUCCESS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TransactionOperationFailed.FinalErrorToRaise
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static TransactionOperationFailed.FinalErrorToRaise[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRANSACTION_SUCCESS
public static final TransactionOperationFailed.FinalErrorToRaise TRANSACTION_SUCCESS
-
TRANSACTION_FAILED
public static final TransactionOperationFailed.FinalErrorToRaise TRANSACTION_FAILED
-
TRANSACTION_EXPIRED
public static final TransactionOperationFailed.FinalErrorToRaise TRANSACTION_EXPIRED
-
TRANSACTION_COMMIT_AMBIGUOUS
public static final TransactionOperationFailed.FinalErrorToRaise TRANSACTION_COMMIT_AMBIGUOUS
-
TRANSACTION_FAILED_POST_COMMIT
public static final TransactionOperationFailed.FinalErrorToRaise TRANSACTION_FAILED_POST_COMMIT
This will currently result in returning success to the application, but unstagingCompleted() will be false.
-
-
Method Detail
-
values
public static TransactionOperationFailed.FinalErrorToRaise[] 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 (TransactionOperationFailed.FinalErrorToRaise c : TransactionOperationFailed.FinalErrorToRaise.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransactionOperationFailed.FinalErrorToRaise valueOf​(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-