Enum XMLAttribute
- java.lang.Object
-
- java.lang.Enum<XMLAttribute>
-
- org.jboss.as.clustering.jgroups.subsystem.XMLAttribute
-
- All Implemented Interfaces:
Serializable,Comparable<XMLAttribute>
public enum XMLAttribute extends Enum<XMLAttribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALGORITHMCHANNELCLIENT_SOCKET_BINDINGCLUSTERDATA_SOURCEDEFAULTDEFAULT_EXECUTORDeprecated.DIAGNOSTICS_SOCKET_BINDINGKEEPALIVE_TIMEKEY_ALIASKEY_STOREMACHINEMAX_THREADSMIN_THREADSMODULENAMEOOB_EXECUTORDeprecated.OUTBOUND_SOCKET_BINDINGSQUEUE_LENGTHRACKSHAREDDeprecated.SITESOCKET_BINDINGSTACKSTATISTICS_ENABLEDTHREAD_FACTORYDeprecated.TIMER_EXECUTORDeprecated.TYPEUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XMLAttributeforName(String localName)StringgetLocalName()Get the local name of this element.static XMLAttributevalueOf(String name)Returns the enum constant of this type with the specified name.static XMLAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final XMLAttribute UNKNOWN
-
ALGORITHM
public static final XMLAttribute ALGORITHM
-
CHANNEL
public static final XMLAttribute CHANNEL
-
CLIENT_SOCKET_BINDING
public static final XMLAttribute CLIENT_SOCKET_BINDING
-
CLUSTER
public static final XMLAttribute CLUSTER
-
DATA_SOURCE
public static final XMLAttribute DATA_SOURCE
-
DEFAULT_EXECUTOR
@Deprecated public static final XMLAttribute DEFAULT_EXECUTOR
Deprecated.
-
DEFAULT
public static final XMLAttribute DEFAULT
-
DIAGNOSTICS_SOCKET_BINDING
public static final XMLAttribute DIAGNOSTICS_SOCKET_BINDING
-
KEEPALIVE_TIME
public static final XMLAttribute KEEPALIVE_TIME
-
KEY_ALIAS
public static final XMLAttribute KEY_ALIAS
-
KEY_STORE
public static final XMLAttribute KEY_STORE
-
MACHINE
public static final XMLAttribute MACHINE
-
MAX_THREADS
public static final XMLAttribute MAX_THREADS
-
MIN_THREADS
public static final XMLAttribute MIN_THREADS
-
MODULE
public static final XMLAttribute MODULE
-
NAME
public static final XMLAttribute NAME
-
OOB_EXECUTOR
@Deprecated public static final XMLAttribute OOB_EXECUTOR
Deprecated.
-
OUTBOUND_SOCKET_BINDINGS
public static final XMLAttribute OUTBOUND_SOCKET_BINDINGS
-
QUEUE_LENGTH
public static final XMLAttribute QUEUE_LENGTH
-
RACK
public static final XMLAttribute RACK
-
SHARED
@Deprecated public static final XMLAttribute SHARED
Deprecated.
-
SITE
public static final XMLAttribute SITE
-
SOCKET_BINDING
public static final XMLAttribute SOCKET_BINDING
-
STACK
public static final XMLAttribute STACK
-
STATISTICS_ENABLED
public static final XMLAttribute STATISTICS_ENABLED
-
THREAD_FACTORY
@Deprecated public static final XMLAttribute THREAD_FACTORY
Deprecated.
-
TIMER_EXECUTOR
@Deprecated public static final XMLAttribute TIMER_EXECUTOR
Deprecated.
-
TYPE
public static final XMLAttribute TYPE
-
-
Method Detail
-
values
public static XMLAttribute[] 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 (XMLAttribute c : XMLAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XMLAttribute 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
-
forName
public static XMLAttribute forName(String localName)
-
-