Enum Class MixedMode

java.lang.Object
java.lang.Enum<MixedMode>
com.yahoo.security.tls.MixedMode
All Implemented Interfaces:
Serializable, Comparable<MixedMode>, Constable

public enum MixedMode extends Enum<MixedMode>
Author:
bjorncs
  • Enum Constant Details

    • PLAINTEXT_CLIENT_MIXED_SERVER

      public static final MixedMode PLAINTEXT_CLIENT_MIXED_SERVER
    • TLS_CLIENT_MIXED_SERVER

      public static final MixedMode TLS_CLIENT_MIXED_SERVER
    • DISABLED

      public static final MixedMode DISABLED
  • Method Details

    • values

      public static MixedMode[] 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 MixedMode 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
    • configValue

      public String configValue()
    • defaultValue

      public static MixedMode defaultValue()
      Returns:
      Default value when mixed mode is not explicitly specified
    • fromConfigValue

      public static MixedMode fromConfigValue(String configValue)