Enum Element
- java.lang.Object
-
- java.lang.Enum<Element>
-
- org.jboss.metadata.parser.jbossweb.Element
-
- All Implemented Interfaces:
Serializable,Comparable<Element>
public enum Element extends Enum<Element>
An enumeration of all the possible XML elements in the jboss-web schema, by name.- Author:
- Remy Maucherat
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ElementforName(String localName)StringgetLocalName()Get the local name of this element.static ElementvalueOf(String name)Returns the enum constant of this type with the specified name.static Element[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Element UNKNOWN
-
ANNOTATION
public static final Element ANNOTATION
-
CACHE_NAME
public static final Element CACHE_NAME
-
CLASS_LOADING
public static final Element CLASS_LOADING
-
CLASS_NAME
public static final Element CLASS_NAME
-
CONFIG_FILE
public static final Element CONFIG_FILE
-
CONFIG_NAME
public static final Element CONFIG_NAME
-
CONTEXT_ROOT
public static final Element CONTEXT_ROOT
-
DEPENDS
public static final Element DEPENDS
-
DENY_UNCOVERED_HTTP_METHODS
public static final Element DENY_UNCOVERED_HTTP_METHODS
-
DISABLE_AUDIT
public static final Element DISABLE_AUDIT
-
DISABLE_CROSS_CONTEXT
public static final Element DISABLE_CROSS_CONTEXT
-
DISTINCT_NAME
public static final Element DISTINCT_NAME
-
EMPTY_ROLE_SEMANTIC
public static final Element EMPTY_ROLE_SEMANTIC
-
ENABLE_WEBSOCKETS
public static final Element ENABLE_WEBSOCKETS
-
EXECUTOR_NAME
public static final Element EXECUTOR_NAME
-
HTTP_METHOD_CONSTRAINT
public static final Element HTTP_METHOD_CONSTRAINT
-
HTTP_HANDLER
public static final Element HTTP_HANDLER
-
JACC_STAR_ROLE_ALLOW
public static final Element JACC_STAR_ROLE_ALLOW
-
JACC_CONTEXT_ID
public static final Element JACC_CONTEXT_ID
-
LISTENER
public static final Element LISTENER
-
LISTENER_TYPE
public static final Element LISTENER_TYPE
-
LOADER_REPOSITORY
public static final Element LOADER_REPOSITORY
-
LOADER_REPOSITORY_CONFIG
public static final Element LOADER_REPOSITORY_CONFIG
-
MAX_ACTIVE_SESSIONS
public static final Element MAX_ACTIVE_SESSIONS
-
MESSAGE_DESTINATION
public static final Element MESSAGE_DESTINATION
-
METHOD
public static final Element METHOD
-
MODULE
public static final Element MODULE
-
MULTIPART_CONFIG
public static final Element MULTIPART_CONFIG
-
OVERLAY
public static final Element OVERLAY
-
PARAM
public static final Element PARAM
-
PROACTIVE_AUTHENTICATION
public static final Element PROACTIVE_AUTHENTICATION
-
REPLICATION_CONFIG
public static final Element REPLICATION_CONFIG
-
REPLICATION_GRANULARITY
public static final Element REPLICATION_GRANULARITY
-
ROLE_ALLOWED
public static final Element ROLE_ALLOWED
-
RUN_AS
public static final Element RUN_AS
-
RUN_AS_PRINCIPAL
public static final Element RUN_AS_PRINCIPAL
-
SECURITY_DOMAIN
public static final Element SECURITY_DOMAIN
-
SECURITY_ROLE
public static final Element SECURITY_ROLE
-
SERVLET
public static final Element SERVLET
-
SERVLET_NAME
public static final Element SERVLET_NAME
-
SERVLET_SECURITY
public static final Element SERVLET_SECURITY
-
SERVLET_CONTAINER
public static final Element SERVLET_CONTAINER
-
SERVER_INSTANCE
public static final Element SERVER_INSTANCE
-
DEFAULT_ENCODING
public static final Element DEFAULT_ENCODING
-
SESSION_CONFIG
public static final Element SESSION_CONFIG
-
SYMBOLIC_ENABLED
public static final Element SYMBOLIC_ENABLED
-
TRANSPORT_GUARANTEE
public static final Element TRANSPORT_GUARANTEE
-
USE_JBOSS_AUTHORIZATION
public static final Element USE_JBOSS_AUTHORIZATION
-
VALVE
public static final Element VALVE
-
VIRTUAL_HOST
public static final Element VIRTUAL_HOST
-
WEBSERVICE_DESCRIPTION
public static final Element WEBSERVICE_DESCRIPTION
-
WEBSERVICE_DESCRIPTION_NAME
public static final Element WEBSERVICE_DESCRIPTION_NAME
-
WSDL_PUBLISH_LOCATION
public static final Element WSDL_PUBLISH_LOCATION
-
-
Method Detail
-
values
public static Element[] 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 (Element c : Element.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Element 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
-
-