public static enum DBProperties.ConnectionPoolType extends java.lang.Enum<DBProperties.ConnectionPoolType>
Modifier and Type | Method and Description |
---|---|
static DBProperties.ConnectionPoolType |
getConnectionPoolType(java.lang.String value) |
static DBProperties.ConnectionPoolType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBProperties.ConnectionPoolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBProperties.ConnectionPoolType HIKARI
public static final DBProperties.ConnectionPoolType BONECP
public static final DBProperties.ConnectionPoolType C3P0
public static DBProperties.ConnectionPoolType[] values()
for (DBProperties.ConnectionPoolType c : DBProperties.ConnectionPoolType.values()) System.out.println(c);
public static DBProperties.ConnectionPoolType 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 nullpublic static DBProperties.ConnectionPoolType getConnectionPoolType(java.lang.String value)