public static enum JdbcConnectionHandler.ConnectionType extends Enum<JdbcConnectionHandler.ConnectionType>
| Enum Constant and Description |
|---|
DEFAULT
The connection is used to perform normal JDBC calls by the underlying connection consumer
|
INIT
The connection is used to initialize the underlying connection consumer
|
| Modifier and Type | Method and Description |
|---|---|
static JdbcConnectionHandler.ConnectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcConnectionHandler.ConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcConnectionHandler.ConnectionType INIT
public static final JdbcConnectionHandler.ConnectionType DEFAULT
public static JdbcConnectionHandler.ConnectionType[] values()
for (JdbcConnectionHandler.ConnectionType c : JdbcConnectionHandler.ConnectionType.values()) System.out.println(c);
public static JdbcConnectionHandler.ConnectionType 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 © 2019 The Holon Platform. All rights reserved.