Class 
Use 
SUMMARY: NESTED | ENUM CONSTANTS | METHOD      DETAIL: ENUM CONSTANTS | METHOD
FlexDoc/Javadoc 2.0
Demo Java Doc

java.base / java.lang.annotation
Enum ElementType
java.lang.Object
  java.lang.Enum<ElementType>
      java.lang.annotation.ElementType
All Implemented Interfaces:
Serializable, Comparable<ElementType>, Constable

public enum ElementType
extends Enum<ElementType>
The constants of this enumerated class provide a simple classification of the syntactic locations where annotations may appear in a Java program. These constants are used in Target meta-annotations to specify where it is legal to write annotations of a given type.

The syntactic locations where annotations may appear are split into declaration contexts, where annotations apply to declarations, and type contexts, where annotations apply to types used in declarations and expressions.

The constants ANNOTATION_TYPE, CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, MODULE, PARAMETER, TYPE, and TYPE_PARAMETER correspond to the declaration contexts in JLS 9.6.4.1.

For example, an annotation whose interface is meta-annotated with @Target(ElementType.FIELD) may only be written as a modifier for a field declaration.

The constant TYPE_USE corresponds to the type contexts in JLS 4.11, as well as to two declaration contexts: class and interface declarations (including annotation declarations) and type parameter declarations.

For example, an annotation whose interface is meta-annotated with @Target(ElementType.TYPE_USE) may be written on the class or interface of a field (or within the class or interface of the field, if it is a nested or parameterized class or interface, or array class), and may also appear as a modifier for, say, a class declaration.

The TYPE_USE constant includes class and interface declarations and type parameter declarations as a convenience for designers of type checkers which give semantics to annotation interfaces. For example, if the annotation interface NonNull is meta-annotated with @Target(ElementType.TYPE_USE), then @NonNull class C {...} could be treated by a type checker as indicating that all variables of class C are non-null, while still allowing variables of other classes to be non-null or not non-null based on whether @NonNull appears at the variable's declaration.

Since:
1.5
Author:
Joshua Bloch

Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Annotation interface declaration (Formerly known as an annotation type.)
Constructor declaration
Field declaration (includes enum constants)
Local variable declaration
Method declaration
Module declaration.
Package declaration
Formal parameter declaration
Record component
Class, interface (including annotation interface), enum, or record declaration
Type parameter declaration
Use of a type
Method Summary
static ElementType[]
Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
Enum Constant Detail
TYPE
public static final ElementType TYPE
Class, interface (including annotation interface), enum, or record declaration

FIELD
public static final ElementType FIELD
Field declaration (includes enum constants)

METHOD
public static final ElementType METHOD
Method declaration

PARAMETER
public static final ElementType PARAMETER
Formal parameter declaration

CONSTRUCTOR
public static final ElementType CONSTRUCTOR
Constructor declaration

LOCAL_VARIABLE
public static final ElementType LOCAL_VARIABLE
Local variable declaration

ANNOTATION_TYPE
public static final ElementType ANNOTATION_TYPE
Annotation interface declaration (Formerly known as an annotation type.)

PACKAGE
public static final ElementType PACKAGE
Package declaration

TYPE_PARAMETER
public static final ElementType TYPE_PARAMETER
Type parameter declaration
Since:
1.8

TYPE_USE
public static final ElementType TYPE_USE
Use of a type
Since:
1.8

MODULE
public static final ElementType MODULE
Module declaration.
Since:
9

RECORD_COMPONENT
public static final ElementType RECORD_COMPONENT
Record component
Since:
16
Method Detail
values
static ElementType[] values
()

valueOf
static ElementType valueOf
(String name)

 Class 
Use 
SUMMARY: NESTED | ENUM CONSTANTS | METHOD      DETAIL: ENUM CONSTANTS | METHOD
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz