Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- org.infinispan.server.hotrod.configuration.Attribute
-
- All Implemented Interfaces:
Serializable
,Comparable<Attribute>
public enum Attribute extends Enum<Attribute>
- Since:
- 10.0
- Author:
- Tristan Tarrant
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Attribute
forName(String localName)
String
toString()
static Attribute
valueOf(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
-
AWAIT_INITIAL_RETRIEVAL
public static final Attribute AWAIT_INITIAL_RETRIEVAL
-
EXTERNAL_HOST
public static final Attribute EXTERNAL_HOST
-
EXTERNAL_PORT
public static final Attribute EXTERNAL_PORT
-
HOST_NAME
public static final Attribute HOST_NAME
-
LAZY_RETRIEVAL
public static final Attribute LAZY_RETRIEVAL
-
LOCK_TIMEOUT
public static final Attribute LOCK_TIMEOUT
-
MECHANISMS
public static final Attribute MECHANISMS
-
NAME
public static final Attribute NAME
-
NETWORK_PREFIX_OVERRIDE
public static final Attribute NETWORK_PREFIX_OVERRIDE
-
POLICY
public static final Attribute POLICY
-
QOP
public static final Attribute QOP
-
REPLICATION_TIMEOUT
public static final Attribute REPLICATION_TIMEOUT
-
REQUIRE_SSL_CLIENT_AUTH
public static final Attribute REQUIRE_SSL_CLIENT_AUTH
-
SECURITY_REALM
public static final Attribute SECURITY_REALM
-
SERVER_PRINCIPAL
public static final Attribute SERVER_PRINCIPAL
-
SERVER_NAME
public static final Attribute SERVER_NAME
-
SOCKET_BINDING
public static final Attribute SOCKET_BINDING
-
TOPOLOGY_STATE_TRANSFER
public static final Attribute TOPOLOGY_STATE_TRANSFER
-
STRENGTH
public static final Attribute STRENGTH
-
VALUE
public static final Attribute VALUE
-
-
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
-
toString
public String toString()
-
-