Enum XML.ResourceAdapter10Tag
- java.lang.Object
-
- java.lang.Enum<XML.ResourceAdapter10Tag>
-
- org.jboss.jca.common.metadata.spec.XML.ResourceAdapter10Tag
-
- All Implemented Interfaces:
Serializable,Comparable<XML.ResourceAdapter10Tag>
- Enclosing interface:
- XML
public static enum XML.ResourceAdapter10Tag extends Enum<XML.ResourceAdapter10Tag>
A ResourceAdapter10Tag.- Author:
- Stefano Maestri
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTICATION_MECHANISMauthentication-mechanism TAGCONFIG_PROPERTYconfig-property TAGCONNECTION_IMPL_CLASSconnection-impl-class TAGCONNECTION_INTERFACEconnection-interface TAGCONNECTIONFACTORY_IMPL_CLASSconnectionfactory-impl-class TAGCONNECTIONFACTORY_INTERFACEconnectionfactory-interface TAGMANAGEDCONNECTIONFACTORY_CLASSmanagedconnectionfactory-class TAGREAUTHENTICATION_SUPPORTreauthentication-support TAGSECURITY_PERMISSIONsecurity-permission TAGTRANSACTION_SUPPORTtransaction-support TAGUNKNOWNalways first
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XML.ResourceAdapter10TagforName(String localName)Static method to get enum instance given localName stringStringgetLocalName()Get the local name of this element.StringtoString()static XML.ResourceAdapter10TagvalueOf(String name)Returns the enum constant of this type with the specified name.static XML.ResourceAdapter10Tag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final XML.ResourceAdapter10Tag UNKNOWN
always first
-
MANAGEDCONNECTIONFACTORY_CLASS
public static final XML.ResourceAdapter10Tag MANAGEDCONNECTIONFACTORY_CLASS
managedconnectionfactory-class TAG
-
CONFIG_PROPERTY
public static final XML.ResourceAdapter10Tag CONFIG_PROPERTY
config-property TAG
-
CONNECTIONFACTORY_INTERFACE
public static final XML.ResourceAdapter10Tag CONNECTIONFACTORY_INTERFACE
connectionfactory-interface TAG
-
CONNECTIONFACTORY_IMPL_CLASS
public static final XML.ResourceAdapter10Tag CONNECTIONFACTORY_IMPL_CLASS
connectionfactory-impl-class TAG
-
CONNECTION_INTERFACE
public static final XML.ResourceAdapter10Tag CONNECTION_INTERFACE
connection-interface TAG
-
CONNECTION_IMPL_CLASS
public static final XML.ResourceAdapter10Tag CONNECTION_IMPL_CLASS
connection-impl-class TAG
-
TRANSACTION_SUPPORT
public static final XML.ResourceAdapter10Tag TRANSACTION_SUPPORT
transaction-support TAG
-
AUTHENTICATION_MECHANISM
public static final XML.ResourceAdapter10Tag AUTHENTICATION_MECHANISM
authentication-mechanism TAG
-
SECURITY_PERMISSION
public static final XML.ResourceAdapter10Tag SECURITY_PERMISSION
security-permission TAG
-
REAUTHENTICATION_SUPPORT
public static final XML.ResourceAdapter10Tag REAUTHENTICATION_SUPPORT
reauthentication-support TAG
-
-
Method Detail
-
values
public static XML.ResourceAdapter10Tag[] 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 (XML.ResourceAdapter10Tag c : XML.ResourceAdapter10Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XML.ResourceAdapter10Tag 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<XML.ResourceAdapter10Tag>
-
forName
public static XML.ResourceAdapter10Tag forName(String localName)
Static method to get enum instance given localName string- Parameters:
localName- a string used as localname (typically tag name as defined in xsd)- Returns:
- the enum instance
-
-