public static enum PreparedStatementProxy.SqlLoggingType extends Enum<PreparedStatementProxy.SqlLoggingType>
| Enum Constant and Description |
|---|
NONE
SQLs are not printed.
|
STDERR
SQLs are printed to the standard error.
|
STDOUT
SQLs are printed to the standard output.
|
| Modifier and Type | Method and Description |
|---|---|
static PreparedStatementProxy.SqlLoggingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreparedStatementProxy.SqlLoggingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreparedStatementProxy.SqlLoggingType NONE
public static final PreparedStatementProxy.SqlLoggingType STDERR
public static final PreparedStatementProxy.SqlLoggingType STDOUT
public static PreparedStatementProxy.SqlLoggingType[] values()
for (PreparedStatementProxy.SqlLoggingType c : PreparedStatementProxy.SqlLoggingType.values()) System.out.println(c);
public static PreparedStatementProxy.SqlLoggingType 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 © 2012 Batoo Software & Consultancy. All Rights Reserved.