枚举 ApiType

java.lang.Object
java.lang.Enum<ApiType>
com.alibaba.nacos.plugin.auth.constant.ApiType
所有已实现的接口:
Serializable, Comparable<ApiType>, java.lang.constant.Constable

public enum ApiType extends Enum<ApiType>
The type of Nacos API.
作者:
zhangyukun, xiweng.yy
  • 枚举常量详细资料

    • ADMIN_API

      public static final ApiType ADMIN_API
      Admin API which nacos maintainer or administrator used.
    • CONSOLE_API

      public static final ApiType CONSOLE_API
      Console API which nacos console used.
    • OPEN_API

      public static final ApiType OPEN_API
      Open API which client used or basic data operation.
    • INNER_API

      public static final ApiType INNER_API
      Inner API which used between nacos servers.
  • 字段详细资料

    • description

      private final String description
  • 构造器详细资料

    • ApiType

      private ApiType(String description)
  • 方法详细资料

    • values

      public static ApiType[] values()
      返回包含该枚举类型的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类型的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static ApiType valueOf(String name)
      返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量
      NullPointerException - 如果参数为空值
    • toString

      public String toString()
      覆盖:
      toString 在类中 Enum<ApiType>