public enum CdbSubscrConfigFlag extends Enum<CdbSubscrConfigFlag>
Enum Constant and Description |
---|
CDB_SUB_WANT_ABORT_ON_ABORT
Normally if a subscriber is the one to abort a transaction it will not
receive an abort notification.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CdbSubscrConfigFlag |
valueOf(int i) |
static CdbSubscrConfigFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CdbSubscrConfigFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CdbSubscrConfigFlag CDB_SUB_WANT_ABORT_ON_ABORT
CdbSubscription.abortTransaction(CdbExtendedException)
This flag is only valid when the subscription type is
CdbSubscriptionType.SUB_RUNNING_TWOPHASE
public static CdbSubscrConfigFlag[] values()
for (CdbSubscrConfigFlag c : CdbSubscrConfigFlag.values()) System.out.println(c);
public static CdbSubscrConfigFlag 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 nullpublic int getValue()
public static CdbSubscrConfigFlag valueOf(int i)