AnnotationValuepublic interface AnnotationValue Represents a value of an annotation type element.
A value is of one of the following types:
- a wrapper class (such as {@link Integer}) for a primitive type
- {@code String}
- {@code TypeMirror}
- {@code VariableElement} (representing an enum constant)
- {@code AnnotationMirror}
- {@code List extends AnnotationValue>}
(representing the elements, in declared order, if the value is an array)
|
|