public enum ConnectorTransactionBoundaries extends Enum<ConnectorTransactionBoundaries>
Enum Constant and Description |
---|
SUPPORTED
Signals that a connector can define its own transaction boundaries.
|
UNSUPPORTED
Signals that a connector cannot define its own transaction boundaries.
|
Modifier and Type | Method and Description |
---|---|
static ConnectorTransactionBoundaries |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorTransactionBoundaries[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorTransactionBoundaries SUPPORTED
public static final ConnectorTransactionBoundaries UNSUPPORTED
public static ConnectorTransactionBoundaries[] values()
for (ConnectorTransactionBoundaries c : ConnectorTransactionBoundaries.values()) System.out.println(c);
public static ConnectorTransactionBoundaries 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 null