Module jdk.javadoc

Enum Class Taglet.Location

java.lang.Object
java.lang.Enum<Taglet.Location>
jdk.javadoc.doclet.Taglet.Location
所有已实现的接口:
Serializable, Comparable<Taglet.Location>, Constable
封闭接口:
Taglet

public static enum Taglet.Location extends Enum<Taglet.Location>
标签可以使用的位置类型。
  • Enum Constant Details

    • OVERVIEW

      public static final Taglet.Location OVERVIEW
      概述文档中。
    • MODULE

      public static final Taglet.Location MODULE
      模块的文档中。
    • PACKAGE

      public static final Taglet.Location PACKAGE
      包的文档中。
    • TYPE

      public static final Taglet.Location TYPE
      类型的文档中,如类、接口或枚举。
    • CONSTRUCTOR

      public static final Taglet.Location CONSTRUCTOR
      构造函数的文档中。
    • METHOD

      public static final Taglet.Location METHOD
      方法的文档中。
    • FIELD

      public static final Taglet.Location FIELD
      字段的文档中。
  • Method Details

    • values

      public static Taglet.Location[] values()
      返回包含此枚举类的常量的数组,按照它们声明的顺序。
      返回:
      包含此枚举类的常量的数组,按照它们声明的顺序
    • valueOf

      public static Taglet.Location valueOf(String name)
      返回具有指定名称的此类的枚举常量。字符串必须与在此类中声明枚举常量时使用的标识符完全匹配。(不允许存在多余的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      具有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果此枚举类没有具有指定名称的常量
      NullPointerException - 如果参数为null