Enum Class AuthenticationMethod

java.lang.Object
java.lang.Enum<AuthenticationMethod>
cn.herodotus.engine.oauth2.core.enums.AuthenticationMethod
All Implemented Interfaces:
cn.herodotus.engine.assistant.definition.enums.BaseUiEnum<String>, cn.herodotus.engine.assistant.definition.enums.EnumDescription, cn.herodotus.engine.assistant.definition.enums.EnumValue<String>, Serializable, Comparable<AuthenticationMethod>, Constable

public enum AuthenticationMethod extends Enum<AuthenticationMethod> implements cn.herodotus.engine.assistant.definition.enums.BaseUiEnum<String>

Description: 客户端身份验证模式

Author:
: gengwei.zheng
Date:
: 2022/3/17 14:49
  • Enum Constant Details

  • Method Details

    • values

      public static AuthenticationMethod[] 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 AuthenticationMethod 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
    • get

      public static AuthenticationMethod get(Integer index)
    • getPreprocessedJsonStructure

      public static List<Map<String,Object>> getPreprocessedJsonStructure()
    • getDescription

      public String getDescription()
      Specified by:
      getDescription in interface cn.herodotus.engine.assistant.definition.enums.EnumDescription
    • getValue

      public String getValue()
      Specified by:
      getValue in interface cn.herodotus.engine.assistant.definition.enums.EnumValue<String>