All Known Implementing Classes:
PackageElement, TypeParameterElement, VariableElement, QualifiedNameable, Parameterizable, ExecutableElement, TypeElement
Elements should be compared using the #equals(Object) method. There is no guarantee that any particular element will always be represented by the same object.
To implement operations based on the class of an {@code Element} object, either use a {@linkplain ElementVisitor visitor} or use the result of the #getKind method. Using {@code instanceof} is not necessarily a reliable idiom for determining the effective class of an object in this modeling hierarchy since an implementation may choose to have a single object implement multiple {@code Element} subinterfaces.
Joseph
- D. DarcyScott
- SeligmanPeter
- von der Ahé1.6
- Method from javax.lang.model.element.Element Summary: |
---|
accept, asType, equals, getAnnotation, getAnnotationMirrors, getEnclosedElements, getEnclosingElement, getKind, getModifiers, getSimpleName, hashCode |
Method from javax.lang.model.element.Element Detail: |
---|
|
A generic element defines a family of types, not just one.
If this is a generic element, a prototypical type is
returned. This is the element's invocation on the
type variables corresponding to its own formal type parameters.
For example,
for the generic class element {@code C |
Note that the identity of an element involves implicit state not directly accessible from the element's methods, including state about the presence of unrelated types. Element objects created by different implementations of these interfaces should not be expected to be equal even if "the same" element is being modeled; this is analogous to the inequality of {@code Class} objects for the same class file loaded through different class loaders. |
The annotation returned by this method could contain an element whose value is of type {@code Class}. This value cannot be returned directly: information necessary to locate and load a class (such as the class loader to use) is not available, and the class might not be loadable at all. Attempting to read a {@code Class} object by invoking the relevant method on the returned annotation will result in a MirroredTypeException , from which the corresponding TypeMirror may be extracted. Similarly, attempting to read a {@code Class[]}-valued element will result in a MirroredTypesException . Note: This method is unlike others in this and related interfaces. It operates on runtime reflective information — representations of annotation types currently loaded into the VM — rather than on the representations defined by and used throughout these interfaces. Consequently, calling methods on the returned annotation object can throw many of the exceptions that can be thrown when calling methods on an annotation object returned by core reflection. This method is intended for callers that are written to operate on a known, fixed set of annotation types. |
To get inherited annotations as well, use getAllAnnotationMirrors . |
Note that elements of certain kinds can be isolated using methods in ElementFilter . |
|
|
|
|
|