Enum WeblogicConnector13.Tag
- java.lang.Object
-
- java.lang.Enum<WeblogicConnector13.Tag>
-
- org.jboss.jca.as.converters.wls.api.metadata.v13.WeblogicConnector13.Tag
-
- All Implemented Interfaces:
Serializable,Comparable<WeblogicConnector13.Tag>
- Enclosing interface:
- WeblogicConnector13
public static enum WeblogicConnector13.Tag extends Enum<WeblogicConnector13.Tag>
A Tag.- Author:
- Jeff Zhang
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN_OBJECTSadmin-objects tagCONNECTOR_WORK_MANAGERconnector-work-manager tagENABLE_ACCESS_OUTSIDE_APPenable-access-outside-app tagENABLE_GLOBAL_ACCESS_TO_CLASSESenable-global-access-to-classes tagJNDI_NAMEjndi-name tagMODULE_NAMEmodule-name tagNATIVE_LIBDIRnative-libdir tagOUTBOUND_RESOURCE_ADAPTERoutbound-resource-adapter tagPROPERTIESproperties tagRESOURCE_ADAPTER_SECURITYsecurity tagUNKNOWNalways firstVENDOR_NAMEvendor-name tagWORK_MANAGERwork-manager tag
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WeblogicConnector13.TagforName(String localName)Static method to get enum instance given localName stringStringgetLocalName()Get the local name of this element.StringtoString()static WeblogicConnector13.TagvalueOf(String name)Returns the enum constant of this type with the specified name.static WeblogicConnector13.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 WeblogicConnector13.Tag UNKNOWN
always first
-
MODULE_NAME
public static final WeblogicConnector13.Tag MODULE_NAME
module-name tag
-
VENDOR_NAME
public static final WeblogicConnector13.Tag VENDOR_NAME
vendor-name tag
-
NATIVE_LIBDIR
public static final WeblogicConnector13.Tag NATIVE_LIBDIR
native-libdir tag
-
JNDI_NAME
public static final WeblogicConnector13.Tag JNDI_NAME
jndi-name tag
-
ENABLE_ACCESS_OUTSIDE_APP
public static final WeblogicConnector13.Tag ENABLE_ACCESS_OUTSIDE_APP
enable-access-outside-app tag
-
ENABLE_GLOBAL_ACCESS_TO_CLASSES
public static final WeblogicConnector13.Tag ENABLE_GLOBAL_ACCESS_TO_CLASSES
enable-global-access-to-classes tag
-
WORK_MANAGER
public static final WeblogicConnector13.Tag WORK_MANAGER
work-manager tag
-
CONNECTOR_WORK_MANAGER
public static final WeblogicConnector13.Tag CONNECTOR_WORK_MANAGER
connector-work-manager tag
-
RESOURCE_ADAPTER_SECURITY
public static final WeblogicConnector13.Tag RESOURCE_ADAPTER_SECURITY
security tag
-
PROPERTIES
public static final WeblogicConnector13.Tag PROPERTIES
properties tag
-
ADMIN_OBJECTS
public static final WeblogicConnector13.Tag ADMIN_OBJECTS
admin-objects tag
-
OUTBOUND_RESOURCE_ADAPTER
public static final WeblogicConnector13.Tag OUTBOUND_RESOURCE_ADAPTER
outbound-resource-adapter tag
-
-
Method Detail
-
values
public static WeblogicConnector13.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 (WeblogicConnector13.Tag c : WeblogicConnector13.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 WeblogicConnector13.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<WeblogicConnector13.Tag>
-
forName
public static WeblogicConnector13.Tag 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
-
-