public enum PoolType extends Enum<PoolType>
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getClassName() |
static PoolType |
getPoolType(String poolTypeName) |
static PoolType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static PoolType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final PoolType Druid
public static final PoolType TomcatJdbc
public static final PoolType BoneCP
public static final PoolType C3P0
public static final PoolType Dbcp2
public static final PoolType Dbcp
public static final PoolType Hikari
public static PoolType[] values()
for (PoolType c : PoolType.values()) System.out.println(c);
public static PoolType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getClassName()
Copyright © 2023. All rights reserved.