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