Enum Element
- java.lang.Object
-
- java.lang.Enum<Element>
-
- org.infinispan.server.configuration.Element
-
- All Implemented Interfaces:
Serializable,Comparable<Element>
public enum Element extends Enum<Element>
- 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 ElementforName(String localName)StringtoString()static ElementvalueOf(String name)Returns the enum constant of this type with the specified name.static Element[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Element UNKNOWN
-
ANY_ADDRESS
public static final Element ANY_ADDRESS
-
ATTRIBUTE
public static final Element ATTRIBUTE
-
ATTRIBUTE_MAPPING
public static final Element ATTRIBUTE_MAPPING
-
ATTRIBUTE_REFERENCE
public static final Element ATTRIBUTE_REFERENCE
-
BINDINGS
public static final Element BINDINGS
-
CONNECTION_PROPERTIES
public static final Element CONNECTION_PROPERTIES
-
CONNECTORS
public static final Element CONNECTORS
-
DISTRIBUTED_REALM
public static final Element DISTRIBUTED_REALM
-
ENDPOINT
public static final Element ENDPOINT
-
ENDPOINTS
public static final Element ENDPOINTS
-
ENGINE
public static final Element ENGINE
-
FILESYSTEM_REALM
public static final Element FILESYSTEM_REALM
-
GLOBAL
public static final Element GLOBAL
-
GROUP_PROPERTIES
public static final Element GROUP_PROPERTIES
-
IDENTITY_MAPPING
public static final Element IDENTITY_MAPPING
-
INET_ADDRESS
public static final Element INET_ADDRESS
-
INTERFACE
public static final Element INTERFACE
-
INTERFACES
public static final Element INTERFACES
-
JWT
public static final Element JWT
-
KERBEROS
public static final Element KERBEROS
-
KEYSTORE
public static final Element KEYSTORE
-
LDAP_REALM
public static final Element LDAP_REALM
-
LINK_LOCAL
public static final Element LINK_LOCAL
-
LOCAL
public static final Element LOCAL
-
LOCAL_REALM
public static final Element LOCAL_REALM
-
LOOPBACK
public static final Element LOOPBACK
-
MATCH_ADDRESS
public static final Element MATCH_ADDRESS
-
MATCH_HOST
public static final Element MATCH_HOST
-
MATCH_INTERFACE
public static final Element MATCH_INTERFACE
-
NAME_REWRITER
public static final Element NAME_REWRITER
-
NON_LOOPBACK
public static final Element NON_LOOPBACK
-
OAUTH2_INTROSPECTION
public static final Element OAUTH2_INTROSPECTION
-
OPTION
public static final Element OPTION
-
PATH
public static final Element PATH
-
PATHS
public static final Element PATHS
-
PROPERTIES
public static final Element PROPERTIES
-
PROPERTIES_REALM
public static final Element PROPERTIES_REALM
-
REGEX_PRINCIPAL_TRANSFORMER
public static final Element REGEX_PRINCIPAL_TRANSFORMER
-
SECURITY
public static final Element SECURITY
-
SECURITY_REALM
public static final Element SECURITY_REALM
-
SECURITY_REALMS
public static final Element SECURITY_REALMS
-
SERVER
public static final Element SERVER
-
SERVER_IDENTITIES
public static final Element SERVER_IDENTITIES
-
SITE_LOCAL
public static final Element SITE_LOCAL
-
SOCKET_BINDING
public static final Element SOCKET_BINDING
-
SOCKET_BINDINGS
public static final Element SOCKET_BINDINGS
-
SSL
public static final Element SSL
-
TOKEN_REALM
public static final Element TOKEN_REALM
-
TRUSTSTORE
public static final Element TRUSTSTORE
-
TRUSTSTORE_REALM
public static final Element TRUSTSTORE_REALM
-
USER_PASSWORD_MAPPER
public static final Element USER_PASSWORD_MAPPER
-
USER_PROPERTIES
public static final Element USER_PROPERTIES
-
DATA_SOURCES
public static final Element DATA_SOURCES
-
DATA_SOURCE
public static final Element DATA_SOURCE
-
CONNECTION_FACTORY
public static final Element CONNECTION_FACTORY
-
CONNECTION_POOL
public static final Element CONNECTION_POOL
-
CONNECTION_PROPERTY
public static final Element CONNECTION_PROPERTY
-
CREDENTIAL_STORES
public static final Element CREDENTIAL_STORES
-
CREDENTIAL_STORE
public static final Element CREDENTIAL_STORE
-
CREDENTIAL_REFERENCE
public static final Element CREDENTIAL_REFERENCE
-
CLEAR_TEXT_CREDENTIAL
public static final Element CLEAR_TEXT_CREDENTIAL
-
IP_FILTER
public static final Element IP_FILTER
-
ACCEPT
public static final Element ACCEPT
-
REJECT
public static final Element REJECT
-
-
Method Detail
-
values
public static Element[] 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 (Element c : Element.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Element 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
-
-