public static enum ConnectionFactory.Tag extends java.lang.Enum<ConnectionFactory.Tag>
Enum Constant and Description |
---|
ALLOCATION_RETRY
allocationRetry tag
|
ALLOCATION_RETRY_WAIT_MILLIS
allocationRetryWaitMillis tag
|
BACKGROUND_VALIDATION
backgroundValidation tag
|
BACKGROUND_VALIDATION_MILLIS
backgroundValidationMillis tag
|
BLOCKING_TIMEOUT_MILLIS
blockingTimeoutMillis tag
|
IDLE_TIMEOUT_MINUTES
idleTimeoutMinutes tag
|
JNDI_NAME
jndiName tag
|
MAX_POOL_SIZE
maxPoolSize tag
|
MIN_POOL_SIZE
min-pool-size tag
|
PREFILL
prefill tag
|
SECURITY_DOMAIN
security-domain tag
|
SECURITY_DOMAIN_AND_APPLICATION
security-domain-and-application tag
|
UNKNOWN
always first
|
USE_FAST_FAIL
useFastFail tag
|
Modifier and Type | Method and Description |
---|---|
static ConnectionFactory.Tag |
forName(java.lang.String localName)
Static method to get enum instance given localName XsdString
|
java.lang.String |
getLocalName()
Get the local name of this element.
|
java.lang.String |
toString() |
static ConnectionFactory.Tag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionFactory.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionFactory.Tag UNKNOWN
public static final ConnectionFactory.Tag JNDI_NAME
public static final ConnectionFactory.Tag SECURITY_DOMAIN
public static final ConnectionFactory.Tag SECURITY_DOMAIN_AND_APPLICATION
public static final ConnectionFactory.Tag MIN_POOL_SIZE
public static final ConnectionFactory.Tag MAX_POOL_SIZE
public static final ConnectionFactory.Tag BLOCKING_TIMEOUT_MILLIS
public static final ConnectionFactory.Tag BACKGROUND_VALIDATION
public static final ConnectionFactory.Tag BACKGROUND_VALIDATION_MILLIS
public static final ConnectionFactory.Tag IDLE_TIMEOUT_MINUTES
public static final ConnectionFactory.Tag ALLOCATION_RETRY
public static final ConnectionFactory.Tag ALLOCATION_RETRY_WAIT_MILLIS
public static final ConnectionFactory.Tag PREFILL
public static final ConnectionFactory.Tag USE_FAST_FAIL
public static ConnectionFactory.Tag[] values()
for (ConnectionFactory.Tag c : ConnectionFactory.Tag.values()) System.out.println(c);
public static ConnectionFactory.Tag 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 java.lang.String getLocalName()
public java.lang.String toString()
toString
in class java.lang.Enum<ConnectionFactory.Tag>
public static ConnectionFactory.Tag forName(java.lang.String localName)
localName
- a XsdString used as localname (typically tag name as defined in xsd)Copyright © 2014 IronJacamar (http://www.ironjacamar.org)