Enum Class TypeReference.AnnotationPosition

java.lang.Object
java.lang.Enum<TypeReference.AnnotationPosition>
org.aspectj.org.eclipse.jdt.internal.compiler.ast.TypeReference.AnnotationPosition
All Implemented Interfaces:
Serializable, Comparable<TypeReference.AnnotationPosition>, java.lang.constant.Constable
Enclosing class:
TypeReference

public static enum TypeReference.AnnotationPosition extends Enum<TypeReference.AnnotationPosition>
Simplified specification of where in a (possibly complex) type reference we are looking for type annotations.
See Also:
TypeReference.hasNullTypeAnnotation(AnnotationPosition)
  • Enum Constant Details

    • MAIN_TYPE

      public static final TypeReference.AnnotationPosition MAIN_TYPE
      For arrays: the outermost dimension, for parameterized types the type, for nested types the innermost type. This is the level that a declaration annotation would apply to.
    • LEAF_TYPE

      public static final TypeReference.AnnotationPosition LEAF_TYPE
      For arrays: the leaf component type, else like MAIN_TYPE.
    • ANY

      public static final TypeReference.AnnotationPosition ANY
      Any position admitting type annotations.
  • Method Details

    • values

      public static TypeReference.AnnotationPosition[] 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 TypeReference.AnnotationPosition 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