Enum XML.Connector20Tag
- java.lang.Object
-
- java.lang.Enum<XML.Connector20Tag>
-
- org.jboss.jca.common.metadata.spec.XML.Connector20Tag
-
- All Implemented Interfaces:
Serializable,Comparable<XML.Connector20Tag>
- Enclosing interface:
- XML
public static enum XML.Connector20Tag extends Enum<XML.Connector20Tag>
A Connector20Tag.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESCRIPTIONdescription tagDISPLAY_NAMEdisplay-name tagEIS_TYPEeis-type tagICONicon tagLICENSElicense tagMODULE_NAMEmodule-name tagREQUIRED_WORK_CONTEXTrequired-work-context tagRESOURCEADAPTERresourceadapter tagRESOURCEADAPTER_VERSIONresourceadapter-version tagUNKNOWNalways firstVENDOR_NAMEvendor-name tag
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XML.Connector20TagforName(String localName)Static method to get enum instance given localName stringStringgetLocalName()Get the local name of this element.StringtoString()static XML.Connector20TagvalueOf(String name)Returns the enum constant of this type with the specified name.static XML.Connector20Tag[]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.Connector20Tag UNKNOWN
always first
-
MODULE_NAME
public static final XML.Connector20Tag MODULE_NAME
module-name tag
-
VENDOR_NAME
public static final XML.Connector20Tag VENDOR_NAME
vendor-name tag
-
EIS_TYPE
public static final XML.Connector20Tag EIS_TYPE
eis-type tag
-
RESOURCEADAPTER_VERSION
public static final XML.Connector20Tag RESOURCEADAPTER_VERSION
resourceadapter-version tag
-
LICENSE
public static final XML.Connector20Tag LICENSE
license tag
-
RESOURCEADAPTER
public static final XML.Connector20Tag RESOURCEADAPTER
resourceadapter tag
-
REQUIRED_WORK_CONTEXT
public static final XML.Connector20Tag REQUIRED_WORK_CONTEXT
required-work-context tag
-
DESCRIPTION
public static final XML.Connector20Tag DESCRIPTION
description tag
-
ICON
public static final XML.Connector20Tag ICON
icon tag
-
DISPLAY_NAME
public static final XML.Connector20Tag DISPLAY_NAME
display-name tag
-
-
Method Detail
-
values
public static XML.Connector20Tag[] 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.Connector20Tag c : XML.Connector20Tag.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.Connector20Tag 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.Connector20Tag>
-
forName
public static XML.Connector20Tag 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
-
-