Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedAnnotationDeclaration
-
Packages that use ResolvedAnnotationDeclaration Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr com.github.javaparser.resolution.declarations -
-
Uses of ResolvedAnnotationDeclaration in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return ResolvedAnnotationDeclaration Modifier and Type Method Description ResolvedAnnotationDeclaration
AnnotationDeclaration. resolve()
-
Uses of ResolvedAnnotationDeclaration in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return ResolvedAnnotationDeclaration Modifier and Type Method Description ResolvedAnnotationDeclaration
AnnotationExpr. resolve()
Attempts to resolve the declaration corresponding to the annotation expression. -
Uses of ResolvedAnnotationDeclaration in com.github.javaparser.resolution.declarations
Methods in com.github.javaparser.resolution.declarations that return ResolvedAnnotationDeclaration Modifier and Type Method Description default ResolvedAnnotationDeclaration
ResolvedAnnotationDeclaration. asAnnotation()
default ResolvedAnnotationDeclaration
ResolvedTypeDeclaration. asAnnotation()
Return this as a AnnotationDeclaration or throw UnsupportedOperationException.Methods in com.github.javaparser.resolution.declarations that return types with arguments of type ResolvedAnnotationDeclaration Modifier and Type Method Description default Optional<ResolvedAnnotationDeclaration>
ResolvedReferenceTypeDeclaration. getDeclaredAnnotation(String name)
Returns the resolved annotation corresponding to the specified name and declared in this type declaration.default Set<ResolvedAnnotationDeclaration>
ResolvedReferenceTypeDeclaration. getDeclaredAnnotations()
Return a collection of all annotations declared in this type declaration.
-