
public static enum PoolParams.Tag extends Enum<PoolParams.Tag>
| Enum Constant and Description |
|---|
CAPACITY_INCREMENT
capacity-increment tag
|
CONNECTION_CREATION_RETRY_FREQUENCY_SECONDS
connection-creation-retry-frequency-seconds tag
|
CONNECTION_RESERVE_TIMWOUT_SECONDS
connection-reserve-timeout-seconds tag
|
HIGHEST_NUM_UNAVILABE
highest-num-unavailable tag
|
HIGHEST_NUM_WAITERS
highest-num-waiters tag
|
IGNORE_IN_USE_CONNECTION_ENABLED
ignore-in-use-connections-enabled tag
|
INITIAL_CAPACITY
initial-capacity tag
|
MATCH_CONNECTIONS_SUPPORTED
match-connections-supported tag
|
MAX_CAPACITY
max-capacity tag
|
PROFILE_HARVEST_FREQUENCY_SECONDS
profile-harvest-frequency-seconds tag
|
SHRINK_FREQUENCY_SECONDS
shrink-frequency-seconds tag
|
SHRINKING_ENABLED
shrinking-enabled tag
|
TEST_CONNECTION_ON_CREATE
test-connections-on-create tag
|
TEST_CONNECTION_ON_RELEASE
test-connections-on-release tag
|
TEST_CONNECTION_ON_RESERVE
test-connections-on-reserve tag
|
TEST_FREQUENCY_SECONDS
test-frequency-seconds tag
|
UNKNOWN
always first
|
USE_FIRST_AVAILABLE
use-first-available tag
|
| Modifier and Type | Method and Description |
|---|---|
static PoolParams.Tag |
forName(String localName)
Static method to get enum instance given localName string
|
String |
getLocalName()
Get the local name of this element.
|
String |
toString() |
static PoolParams.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PoolParams.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PoolParams.Tag UNKNOWN
public static final PoolParams.Tag INITIAL_CAPACITY
public static final PoolParams.Tag MAX_CAPACITY
public static final PoolParams.Tag CAPACITY_INCREMENT
public static final PoolParams.Tag SHRINKING_ENABLED
public static final PoolParams.Tag SHRINK_FREQUENCY_SECONDS
public static final PoolParams.Tag HIGHEST_NUM_WAITERS
public static final PoolParams.Tag HIGHEST_NUM_UNAVILABE
public static final PoolParams.Tag CONNECTION_CREATION_RETRY_FREQUENCY_SECONDS
public static final PoolParams.Tag CONNECTION_RESERVE_TIMWOUT_SECONDS
public static final PoolParams.Tag TEST_FREQUENCY_SECONDS
public static final PoolParams.Tag TEST_CONNECTION_ON_CREATE
public static final PoolParams.Tag TEST_CONNECTION_ON_RELEASE
public static final PoolParams.Tag TEST_CONNECTION_ON_RESERVE
public static final PoolParams.Tag PROFILE_HARVEST_FREQUENCY_SECONDS
public static final PoolParams.Tag IGNORE_IN_USE_CONNECTION_ENABLED
public static final PoolParams.Tag MATCH_CONNECTIONS_SUPPORTED
public static final PoolParams.Tag USE_FIRST_AVAILABLE
public static PoolParams.Tag[] values()
for (PoolParams.Tag c : PoolParams.Tag.values()) System.out.println(c);
public static PoolParams.Tag 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 nullpublic String getLocalName()
public String toString()
toString in class Enum<PoolParams.Tag>public static PoolParams.Tag forName(String localName)
localName - a string used as localname (typically tag name as defined in xsd)Copyright © 2013 IronJacamar (http://www.ironjacamar.org)