Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- org.infinispan.server.jgroups.subsystem.Attribute
-
- All Implemented Interfaces:
Serializable,Comparable<Attribute>
public enum Attribute extends Enum<Attribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANNELCLUSTERCLUSTER_ROLEDEFAULTDEFAULT_EXECUTORDeprecated.DEFAULT_STACKDeprecated.DIAGNOSTICS_SOCKET_BINDINGKEEPALIVE_TIMEMACHINEMAX_THREADSMECHMIN_THREADSMODULENAMENAMESPACEOOB_EXECUTORDeprecated.QUEUE_LENGTHRACKSECURITY_REALMSHAREDSITESOCKET_BINDINGSTACKTHREAD_FACTORYDeprecated.TIMER_EXECUTORDeprecated.TYPEUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeforName(String localName)StringgetLocalName()Get the local name of this element.static AttributevalueOf(String name)Returns the enum constant of this type with the specified name.static Attribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Attribute UNKNOWN
-
CHANNEL
public static final Attribute CHANNEL
-
CLUSTER
public static final Attribute CLUSTER
-
CLUSTER_ROLE
public static final Attribute CLUSTER_ROLE
-
DEFAULT_EXECUTOR
@Deprecated public static final Attribute DEFAULT_EXECUTOR
Deprecated.
-
DEFAULT
public static final Attribute DEFAULT
-
DEFAULT_STACK
@Deprecated public static final Attribute DEFAULT_STACK
Deprecated.
-
DIAGNOSTICS_SOCKET_BINDING
public static final Attribute DIAGNOSTICS_SOCKET_BINDING
-
KEEPALIVE_TIME
public static final Attribute KEEPALIVE_TIME
-
MACHINE
public static final Attribute MACHINE
-
MAX_THREADS
public static final Attribute MAX_THREADS
-
MECH
public static final Attribute MECH
-
MIN_THREADS
public static final Attribute MIN_THREADS
-
MODULE
public static final Attribute MODULE
-
NAME
public static final Attribute NAME
-
NAMESPACE
public static final Attribute NAMESPACE
-
OOB_EXECUTOR
@Deprecated public static final Attribute OOB_EXECUTOR
Deprecated.
-
QUEUE_LENGTH
public static final Attribute QUEUE_LENGTH
-
RACK
public static final Attribute RACK
-
SECURITY_REALM
public static final Attribute SECURITY_REALM
-
SHARED
public static final Attribute SHARED
-
SITE
public static final Attribute SITE
-
SOCKET_BINDING
public static final Attribute SOCKET_BINDING
-
STACK
public static final Attribute STACK
-
THREAD_FACTORY
@Deprecated public static final Attribute THREAD_FACTORY
Deprecated.
-
TIMER_EXECUTOR
@Deprecated public static final Attribute TIMER_EXECUTOR
Deprecated.
-
TYPE
public static final Attribute TYPE
-
-
Method Detail
-
values
public static Attribute[] 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 (Attribute c : Attribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Attribute 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
-
-