public static enum ConnectorConstants.PoolType extends Enum<ConnectorConstants.PoolType>
| Enum Constant and Description |
|---|
ASSOCIATE_WITH_THREAD_POOL |
PARTITIONED_POOL |
POOLING_DISABLED |
STANDARD_POOL |
| Modifier and Type | Method and Description |
|---|---|
static ConnectorConstants.PoolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorConstants.PoolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorConstants.PoolType ASSOCIATE_WITH_THREAD_POOL
public static final ConnectorConstants.PoolType STANDARD_POOL
public static final ConnectorConstants.PoolType PARTITIONED_POOL
public static final ConnectorConstants.PoolType POOLING_DISABLED
public static ConnectorConstants.PoolType[] values()
for (ConnectorConstants.PoolType c : ConnectorConstants.PoolType.values()) System.out.println(c);
public static ConnectorConstants.PoolType 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 © 2017. All rights reserved.