Enum AS7ResourceAdapterTags
- java.lang.Object
-
- java.lang.Enum<AS7ResourceAdapterTags>
-
- org.jboss.as.connector.subsystems.resourceadapters.AS7ResourceAdapterTags
-
- All Implemented Interfaces:
Serializable,Comparable<AS7ResourceAdapterTags>
public enum AS7ResourceAdapterTags extends Enum<AS7ResourceAdapterTags>
TODO class javadoc.- Author:
- Brian Stansberry (c) 2011 Red Hat Inc.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN_OBJECTadmin-objects tagADMIN_OBJECTSadmin-objects tagARCHIVEarchive tagBEAN_VALIDATION_GROUPbean-validation-group tagBEAN_VALIDATION_GROUPSbean-validation-groups tagBOOTSTRAP_CONTEXTbootstrap-context tagCONFIG_PROPERTYconfig-property tagCONNECTION_DEFINITIONconnection-definition tagCONNECTION_DEFINITIONSconnection-definitions tagIDid tagMODULEmodule tagTRANSACTION_SUPPORTtransaction-support tagUNKNOWNalways firstWORKMANAGER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AS7ResourceAdapterTagsforName(String localName)Static method to get enum instance given localName stringStringgetLocalName()Get the local name of this element.StringtoString()static AS7ResourceAdapterTagsvalueOf(String name)Returns the enum constant of this type with the specified name.static AS7ResourceAdapterTags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final AS7ResourceAdapterTags UNKNOWN
always first
-
ID
public static final AS7ResourceAdapterTags ID
id tag
-
CONFIG_PROPERTY
public static final AS7ResourceAdapterTags CONFIG_PROPERTY
config-property tag
-
ARCHIVE
public static final AS7ResourceAdapterTags ARCHIVE
archive tag
-
MODULE
public static final AS7ResourceAdapterTags MODULE
module tag
-
BEAN_VALIDATION_GROUPS
public static final AS7ResourceAdapterTags BEAN_VALIDATION_GROUPS
bean-validation-groups tag
-
BEAN_VALIDATION_GROUP
public static final AS7ResourceAdapterTags BEAN_VALIDATION_GROUP
bean-validation-group tag
-
BOOTSTRAP_CONTEXT
public static final AS7ResourceAdapterTags BOOTSTRAP_CONTEXT
bootstrap-context tag
-
TRANSACTION_SUPPORT
public static final AS7ResourceAdapterTags TRANSACTION_SUPPORT
transaction-support tag
-
CONNECTION_DEFINITIONS
public static final AS7ResourceAdapterTags CONNECTION_DEFINITIONS
connection-definitions tag
-
CONNECTION_DEFINITION
public static final AS7ResourceAdapterTags CONNECTION_DEFINITION
connection-definition tag
-
ADMIN_OBJECTS
public static final AS7ResourceAdapterTags ADMIN_OBJECTS
admin-objects tag
-
ADMIN_OBJECT
public static final AS7ResourceAdapterTags ADMIN_OBJECT
admin-objects tag
-
WORKMANAGER
public static final AS7ResourceAdapterTags WORKMANAGER
-
-
Method Detail
-
values
public static AS7ResourceAdapterTags[] 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 (AS7ResourceAdapterTags c : AS7ResourceAdapterTags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AS7ResourceAdapterTags 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<AS7ResourceAdapterTags>
-
forName
public static AS7ResourceAdapterTags 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
-
-