Enum Class Attribute

java.lang.Object
java.lang.Enum<Attribute>
org.infinispan.server.hotrod.configuration.Attribute
All Implemented Interfaces:
Serializable, Comparable<Attribute>, Constable

public enum Attribute extends Enum<Attribute>
Since:
10.0
Author:
Tristan Tarrant
  • Enum Constant Details Link icon

    • UNKNOWN Link icon

      public static final Attribute UNKNOWN
    • AWAIT_INITIAL_RETRIEVAL Link icon

      public static final Attribute AWAIT_INITIAL_RETRIEVAL
    • EXTERNAL_HOST Link icon

      public static final Attribute EXTERNAL_HOST
    • EXTERNAL_PORT Link icon

      public static final Attribute EXTERNAL_PORT
    • HOST_NAME Link icon

      public static final Attribute HOST_NAME
    • LAZY_RETRIEVAL Link icon

      public static final Attribute LAZY_RETRIEVAL
    • LOCK_TIMEOUT Link icon

      public static final Attribute LOCK_TIMEOUT
    • MECHANISMS Link icon

      public static final Attribute MECHANISMS
    • NAME Link icon

      public static final Attribute NAME
    • NETWORK_PREFIX_OVERRIDE Link icon

      public static final Attribute NETWORK_PREFIX_OVERRIDE
    • POLICY Link icon

      public static final Attribute POLICY
    • QOP Link icon

      public static final Attribute QOP
    • REPLICATION_TIMEOUT Link icon

      public static final Attribute REPLICATION_TIMEOUT
    • REQUIRE_SSL_CLIENT_AUTH Link icon

      public static final Attribute REQUIRE_SSL_CLIENT_AUTH
    • SECURITY_REALM Link icon

      public static final Attribute SECURITY_REALM
    • SERVER_PRINCIPAL Link icon

      public static final Attribute SERVER_PRINCIPAL
    • SERVER_NAME Link icon

      public static final Attribute SERVER_NAME
    • SOCKET_BINDING Link icon

      public static final Attribute SOCKET_BINDING
    • TOPOLOGY_STATE_TRANSFER Link icon

      public static final Attribute TOPOLOGY_STATE_TRANSFER
    • STRENGTH Link icon

      public static final Attribute STRENGTH
    • VALUE Link icon

      public static final Attribute VALUE
  • Method Details Link icon

    • values Link icon

      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 Link icon

      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
    • forName Link icon

      public static Attribute forName(String localName)
    • toString Link icon

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