public interface QualifierPolymorphism
| Modifier and Type | Method and Description |
|---|---|
static AnnotationMirror |
getPolymorphicQualifier(AnnotationMirror qual) |
static Name |
getPolymorphicQualifierElement(AnnotationMirror qual)
If
qual is a polymorphic qualifier, return the class specified by the PolymorphicQualifier meta-annotation on the polymorphic qualifier is returned. |
static boolean |
hasPolymorphicQualifier(AnnotationMirror qual) |
void |
resolve(AnnotatedTypeMirror.AnnotatedExecutableType functionalInterface,
AnnotatedTypeMirror.AnnotatedExecutableType memberReference)
Resolves polymorphism annotations for the given type.
|
void |
resolve(MethodInvocationTree tree,
AnnotatedTypeMirror.AnnotatedExecutableType type)
Resolves polymorphism annotations for the given type.
|
void |
resolve(NewClassTree tree,
AnnotatedTypeMirror.AnnotatedExecutableType type)
Resolves polymorphism annotations for the given type.
|
static AnnotationMirror getPolymorphicQualifier(AnnotationMirror qual)
PolymorphicQualifier meta-annotation on qual if one exists;
otherwise return nullstatic boolean hasPolymorphicQualifier(AnnotationMirror qual)
qual has the PolymorphicQualifier meta-annotation.static Name getPolymorphicQualifierElement(AnnotationMirror qual)
qual is a polymorphic qualifier, return the class specified by the PolymorphicQualifier meta-annotation on the polymorphic qualifier is returned. Otherwise,
return null.
This value identifies the qualifier hierarchy to which this polymorphic qualifier belongs.
By convention, it is the top qualifier of the hierarchy. Use of PolymorphicQualifier.class is discouraged, because it can lead to ambiguity if used for
multiple type systems.
qual - an annotationPolymorphicQualifier meta-annotation on qual, if qual is a polymorphic qualifier; otherwise, null.PolymorphicQualifier.value()void resolve(MethodInvocationTree tree, AnnotatedTypeMirror.AnnotatedExecutableType type)
tree - the tree associated with the typetype - the type to annotate; is side-effected by this methodvoid resolve(NewClassTree tree, AnnotatedTypeMirror.AnnotatedExecutableType type)
tree - the tree associated with the typetype - the type to annotate; is side-effected by this methodvoid resolve(AnnotatedTypeMirror.AnnotatedExecutableType functionalInterface, AnnotatedTypeMirror.AnnotatedExecutableType memberReference)
functionalInterface - the function type of memberReferencememberReference - the type of a member reference; is side-effected by this method