Enum Class Attribute

java.lang.Object
java.lang.Enum<Attribute>
org.jboss.as.remoting.Attribute
All Implemented Interfaces:
Serializable, Comparable<Attribute>, Constable

public enum Attribute extends Enum<Attribute>
Author:
David M. Lloyd
  • Enum Constant Details

    • 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 Details

    • values

      public static Attribute[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Attribute valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getLocalName

      public String getLocalName()
      Get the local name of this element.
      Returns:
      the local name
    • forName

      public static Attribute forName(String localName)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Attribute>