public static enum TransactionInput.ConnectMode extends Enum<TransactionInput.ConnectMode>
Enum Constant and Description |
---|
ABORT_ON_CONFLICT |
DISCONNECT_ON_CONFLICT |
Modifier and Type | Method and Description |
---|---|
static TransactionInput.ConnectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionInput.ConnectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionInput.ConnectMode DISCONNECT_ON_CONFLICT
public static final TransactionInput.ConnectMode ABORT_ON_CONFLICT
public static TransactionInput.ConnectMode[] values()
for (TransactionInput.ConnectMode c : TransactionInput.ConnectMode.values()) System.out.println(c);
public static TransactionInput.ConnectMode 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 nullCopyright © 2016. All rights reserved.