- java.lang.Object
- 
- java.lang.Enum<Taglet.Location>
- 
- jdk.javadoc.doclet.Taglet.Location
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Taglet.Location>
 - Enclosing interface:
- Taglet
 
 public static enum Taglet.Location extends Enum<Taglet.Location> The kind of location in which a tag may be used.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CONSTRUCTORIn the documentation for a constructor.FIELDIn the documentation for a field.METHODIn the documentation for a method.MODULEIn the documentation for a module.OVERVIEWIn an Overview document.PACKAGEIn the documentation for a package.TYPEIn the documentation for a class, interface or enum.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Taglet.LocationvalueOf(String name)Returns the enum constant of this type with the specified name.static Taglet.Location[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
OVERVIEWpublic static final Taglet.Location OVERVIEW In an Overview document.
 - 
MODULEpublic static final Taglet.Location MODULE In the documentation for a module.
 - 
PACKAGEpublic static final Taglet.Location PACKAGE In the documentation for a package.
 - 
TYPEpublic static final Taglet.Location TYPE In the documentation for a class, interface or enum.
 - 
CONSTRUCTORpublic static final Taglet.Location CONSTRUCTOR In the documentation for a constructor.
 - 
METHODpublic static final Taglet.Location METHOD In the documentation for a method.
 - 
FIELDpublic static final Taglet.Location FIELD In the documentation for a field.
 
- 
 - 
Method Detail- 
valuespublic static Taglet.Location[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Taglet.Location c : Taglet.Location.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Taglet.Location valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-