Package org.jboss.jca.as.converters
Enum TxConnectionFactory.Tag
- java.lang.Object
-
- java.lang.Enum<TxConnectionFactory.Tag>
-
- org.jboss.jca.as.converters.TxConnectionFactory.Tag
-
- All Implemented Interfaces:
Serializable,Comparable<TxConnectionFactory.Tag>
- Enclosing interface:
- TxConnectionFactory
public static enum TxConnectionFactory.Tag extends Enum<TxConnectionFactory.Tag>
A Tag.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOCATION_RETRYallocationRetry tagALLOCATION_RETRY_WAIT_MILLISallocationRetryWaitMillis tagBACKGROUND_VALIDATIONbackgroundValidation tagBACKGROUND_VALIDATION_MILLISbackgroundValidationMillis tagBLOCKING_TIMEOUT_MILLISblockingTimeoutMillis tagCONFIG_PROPERTYconfig-property tagCONNECTION_DEFINITIONconnection-definition tagIDLE_TIMEOUT_MINUTESidleTimeoutMinutes tagJNDI_NAMEjndiName tagLOCAL_TRANSACTIONlocal-transaction tagMAX_POOL_SIZEmaxPoolSize tagMIN_POOL_SIZEmin-pool-size tagNO_TX_SEPARATE_POOLSxaDatasourceClass tagPREFILLprefill tagRAR_NAMErar-name tagSECURITY_DOMAINsecurity-domain tagSECURITY_DOMAIN_AND_APPLICATIONsecurity-domain-and-application tagTRACK_CONNECTION_BY_TXxaDatasourceProperty tagUNKNOWNalways firstUSE_FAST_FAILuseFastFail tagXA_RESOURCE_TIMEOUTXaResourceTimeout tagXA_TRANSACTIONxa-transaction tag
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TxConnectionFactory.TagforName(String localName)Static method to get enum instance given localName XsdStringStringgetLocalName()Get the local name of this element.StringtoString()static TxConnectionFactory.TagvalueOf(String name)Returns the enum constant of this type with the specified name.static TxConnectionFactory.Tag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final TxConnectionFactory.Tag UNKNOWN
always first
-
TRACK_CONNECTION_BY_TX
public static final TxConnectionFactory.Tag TRACK_CONNECTION_BY_TX
xaDatasourceProperty tag
-
NO_TX_SEPARATE_POOLS
public static final TxConnectionFactory.Tag NO_TX_SEPARATE_POOLS
xaDatasourceClass tag
-
XA_RESOURCE_TIMEOUT
public static final TxConnectionFactory.Tag XA_RESOURCE_TIMEOUT
XaResourceTimeout tag
-
LOCAL_TRANSACTION
public static final TxConnectionFactory.Tag LOCAL_TRANSACTION
local-transaction tag
-
XA_TRANSACTION
public static final TxConnectionFactory.Tag XA_TRANSACTION
xa-transaction tag
-
RAR_NAME
public static final TxConnectionFactory.Tag RAR_NAME
rar-name tag
-
CONNECTION_DEFINITION
public static final TxConnectionFactory.Tag CONNECTION_DEFINITION
connection-definition tag
-
CONFIG_PROPERTY
public static final TxConnectionFactory.Tag CONFIG_PROPERTY
config-property tag
-
JNDI_NAME
public static final TxConnectionFactory.Tag JNDI_NAME
jndiName tag
-
SECURITY_DOMAIN
public static final TxConnectionFactory.Tag SECURITY_DOMAIN
security-domain tag
-
SECURITY_DOMAIN_AND_APPLICATION
public static final TxConnectionFactory.Tag SECURITY_DOMAIN_AND_APPLICATION
security-domain-and-application tag
-
MIN_POOL_SIZE
public static final TxConnectionFactory.Tag MIN_POOL_SIZE
min-pool-size tag
-
MAX_POOL_SIZE
public static final TxConnectionFactory.Tag MAX_POOL_SIZE
maxPoolSize tag
-
BLOCKING_TIMEOUT_MILLIS
public static final TxConnectionFactory.Tag BLOCKING_TIMEOUT_MILLIS
blockingTimeoutMillis tag
-
BACKGROUND_VALIDATION
public static final TxConnectionFactory.Tag BACKGROUND_VALIDATION
backgroundValidation tag
-
BACKGROUND_VALIDATION_MILLIS
public static final TxConnectionFactory.Tag BACKGROUND_VALIDATION_MILLIS
backgroundValidationMillis tag
-
IDLE_TIMEOUT_MINUTES
public static final TxConnectionFactory.Tag IDLE_TIMEOUT_MINUTES
idleTimeoutMinutes tag
-
ALLOCATION_RETRY
public static final TxConnectionFactory.Tag ALLOCATION_RETRY
allocationRetry tag
-
ALLOCATION_RETRY_WAIT_MILLIS
public static final TxConnectionFactory.Tag ALLOCATION_RETRY_WAIT_MILLIS
allocationRetryWaitMillis tag
-
PREFILL
public static final TxConnectionFactory.Tag PREFILL
prefill tag
-
USE_FAST_FAIL
public static final TxConnectionFactory.Tag USE_FAST_FAIL
useFastFail tag
-
-
Method Detail
-
values
public static TxConnectionFactory.Tag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TxConnectionFactory.Tag c : TxConnectionFactory.Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TxConnectionFactory.Tag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getLocalName
public String getLocalName()
Get the local name of this element.- Returns:
- the local name
-
toString
public String toString()
- Overrides:
toStringin classEnum<TxConnectionFactory.Tag>
-
forName
public static TxConnectionFactory.Tag forName(String localName)
Static method to get enum instance given localName XsdString- Parameters:
localName- a XsdString used as localname (typically tag name as defined in xsd)- Returns:
- the enum instance
-
-