public enum AmqpTransactionCapability extends java.lang.Enum<AmqpTransactionCapability>
| Enum Constant | Description |
|---|---|
DISTRIBUTED_TRANSACTIONS |
|
LOCAL_TRANSACTIONS |
|
MULTI_SSNS_PER_TXN |
|
MULTI_TXNS_PER_SSN |
|
PROMOTABLE_TRANSACTIONS |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
value() |
|
static AmqpTransactionCapability |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AmqpTransactionCapability |
valueOf(StringFW value) |
Returns the enum constant of this type with the specified name.
|
static AmqpTransactionCapability[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpTransactionCapability LOCAL_TRANSACTIONS
public static final AmqpTransactionCapability DISTRIBUTED_TRANSACTIONS
public static final AmqpTransactionCapability PROMOTABLE_TRANSACTIONS
public static final AmqpTransactionCapability MULTI_TXNS_PER_SSN
public static final AmqpTransactionCapability MULTI_SSNS_PER_TXN
public static AmqpTransactionCapability[] values()
for (AmqpTransactionCapability c : AmqpTransactionCapability.values()) System.out.println(c);
public static AmqpTransactionCapability valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static AmqpTransactionCapability valueOf(StringFW value)
value - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2020. All rights reserved.