Methods Summary |
---|
public com.sun.mirror.util.SourcePosition | getPosition()Returns the source position of the beginning of this annotation value.
Returns null if the position is unknown or not applicable.
This source position is intended for use in providing diagnostics,
and indicates only approximately where an annotation value begins.
|
public java.lang.Object | getValue()Returns the value.
The result has one of the following types:
- a wrapper class (such as {@link Integer}) for a primitive type
- {@code String}
- {@code TypeMirror}
- {@code EnumConstantDeclaration}
- {@code AnnotationMirror}
- {@code Collection}
(representing the elements, in order, if the value is an array)
|
public java.lang.String | toString()Returns a string representation of this value.
This is returned in a form suitable for representing this value
in the source code of an annotation.
|