Enum Class Element

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

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

    • UNKNOWN Link icon

      public static final Element UNKNOWN
    • AUTHENTICATION Link icon

      public static final Element AUTHENTICATION
    • ENCRYPTION Link icon

      public static final Element ENCRYPTION
    • FORWARD_SECRECY Link icon

      public static final Element FORWARD_SECRECY
    • NO_ACTIVE Link icon

      public static final Element NO_ACTIVE
    • NO_ANONYMOUS Link icon

      public static final Element NO_ANONYMOUS
    • NO_DICTIONARY Link icon

      public static final Element NO_DICTIONARY
    • NO_PLAIN_TEXT Link icon

      public static final Element NO_PLAIN_TEXT
    • PASS_CREDENTIALS Link icon

      public static final Element PASS_CREDENTIALS
    • POLICY Link icon

      public static final Element POLICY
    • PROPERTIES Link icon

      public static final Element PROPERTIES
    • PROPERTY Link icon

      public static final Element PROPERTY
    • SASL Link icon

      public static final Element SASL
    • SNI Link icon

      public static final Element SNI
    • SERVER_SUBJECT Link icon

      public static final Element SERVER_SUBJECT
  • Method Details Link icon

    • values Link icon

      public static Element[] 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 Element 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 Element forName(String localName)
    • toString Link icon

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