protected static enum AbstractStatement.CompletionReason extends java.lang.Enum<AbstractStatement.CompletionReason>
InternalTransactionCoordinator to
notify the statement on why it should complete.
TODO: This is a bit of kludge to fix JDBC-304 in 2.2.x, might need some more polish for 2.3
| Modifier and Type | Method and Description |
|---|---|
static AbstractStatement.CompletionReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractStatement.CompletionReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractStatement.CompletionReason COMMIT
public static final AbstractStatement.CompletionReason OTHER
public static AbstractStatement.CompletionReason[] values()
for (AbstractStatement.CompletionReason c : AbstractStatement.CompletionReason.values()) System.out.println(c);
public static AbstractStatement.CompletionReason 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 nullCopyright © 2001-2012 Jaybird (Firebird JDBC/JCA) team. All rights reserved.