Package org.jboss.as.remoting
Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- org.jboss.as.remoting.Attribute
-
- All Implemented Interfaces:
Serializable,Comparable<Attribute>
public enum Attribute extends Enum<Attribute>
- Author:
- David M. Lloyd
-
-
Enum Constant Summary
-
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.StringtoString()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
-
AUTHENTICATION_CONTEXT
public static final Attribute AUTHENTICATION_CONTEXT
-
CONNECTOR_REF
public static final Attribute CONNECTOR_REF
-
NAME
public static final Attribute NAME
-
OUTBOUND_SOCKET_BINDING_REF
public static final Attribute OUTBOUND_SOCKET_BINDING_REF
-
PROTOCOL
public static final Attribute PROTOCOL
-
SASL_AUTHENTICATION_FACTORY
public static final Attribute SASL_AUTHENTICATION_FACTORY
-
SASL_PROTOCOL
public static final Attribute SASL_PROTOCOL
-
SECURITY_REALM
public static final Attribute SECURITY_REALM
-
SERVER_NAME
public static final Attribute SERVER_NAME
-
SOCKET_BINDING
public static final Attribute SOCKET_BINDING
-
SSL_CONTEXT
public static final Attribute SSL_CONTEXT
-
URI
public static final Attribute URI
-
USERNAME
public static final Attribute USERNAME
-
VALUE
public static final Attribute VALUE
-
WORKER_READ_THREADS
public static final Attribute WORKER_READ_THREADS
-
WORKER_TASK_CORE_THREADS
public static final Attribute WORKER_TASK_CORE_THREADS
-
WORKER_TASK_KEEPALIVE
public static final Attribute WORKER_TASK_KEEPALIVE
-
WORKER_TASK_LIMIT
public static final Attribute WORKER_TASK_LIMIT
-
WORKER_TASK_MAX_THREADS
public static final Attribute WORKER_TASK_MAX_THREADS
-
WORKER_WRITE_THREADS
public static final Attribute WORKER_WRITE_THREADS
-
-
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
-
-