Package com.github.javaparser.ast.body
Class AnnotationMemberDeclaration
java.lang.Object
com.github.javaparser.ast.Node
com.github.javaparser.ast.body.BodyDeclaration<AnnotationMemberDeclaration>
com.github.javaparser.ast.body.AnnotationMemberDeclaration
- All Implemented Interfaces:
NodeWithAbstractModifier<AnnotationMemberDeclaration>,NodeWithPublicModifier<AnnotationMemberDeclaration>,NodeWithAnnotations<AnnotationMemberDeclaration>,NodeWithJavadoc<AnnotationMemberDeclaration>,NodeWithModifiers<AnnotationMemberDeclaration>,NodeWithRange<Node>,NodeWithSimpleName<AnnotationMemberDeclaration>,NodeWithTokenRange<Node>,NodeWithType<AnnotationMemberDeclaration,Type>,Observable,Visitable,HasParentNode<Node>,Resolvable<ResolvedAnnotationMemberDeclaration>,Cloneable
public class AnnotationMemberDeclaration
extends BodyDeclaration<AnnotationMemberDeclaration>
implements NodeWithJavadoc<AnnotationMemberDeclaration>, NodeWithSimpleName<AnnotationMemberDeclaration>, NodeWithType<AnnotationMemberDeclaration,Type>, NodeWithPublicModifier<AnnotationMemberDeclaration>, NodeWithAbstractModifier<AnnotationMemberDeclaration>, Resolvable<ResolvedAnnotationMemberDeclaration>
The "int id();" in
@interface X { int id(); }
All annotations preceding the type will be set on this object, not on the type. JavaParser doesn't know if it
they are applicable to the method or the type.
- Author:
- Julio Vilmar Gesser
-
Nested Class Summary
Nested classes/interfaces inherited from class com.github.javaparser.ast.Node
Node.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversal -
Field Summary
Fields inherited from class com.github.javaparser.ast.Node
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, LINE_SEPARATOR_KEY, NODE_BY_BEGIN_POSITION, PHANTOM_KEY, prettyPrinterNoCommentsConfiguration, PRINTER_KEY, SYMBOL_RESOLVER_KEY -
Constructor Summary
ConstructorsConstructorDescriptionAnnotationMemberDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)AnnotationMemberDeclaration(NodeList<Modifier> modifiers, Type type, String name, Expression defaultValue)AnnotationMemberDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)This constructor is used by the parser and is considered private. -
Method Summary
Modifier and TypeMethodDescription<R, A> Raccept(GenericVisitor<R,A> v, A arg)Accept method for visitor support.<A> voidaccept(VoidVisitor<A> v, A arg)Accept method for visitor support.clone()Return the modifiers of this member declaration.getName()getType()Gets the typevoidbooleanbooleanbooleanresolve()setDefaultValue(Expression defaultValue)Sets the default valuesetModifiers(NodeList<Modifier> modifiers)setName(SimpleName name)Sets the typeMethods inherited from class com.github.javaparser.ast.body.BodyDeclaration
asAnnotationDeclaration, asCallableDeclaration, asClassOrInterfaceDeclaration, asCompactConstructorDeclaration, asConstructorDeclaration, asEnumConstantDeclaration, asEnumDeclaration, asFieldDeclaration, asInitializerDeclaration, asMethodDeclaration, asRecordDeclaration, asTypeDeclaration, getAnnotations, ifAnnotationDeclaration, ifCallableDeclaration, ifClassOrInterfaceDeclaration, ifCompactConstructorDeclaration, ifConstructorDeclaration, ifEnumConstantDeclaration, ifEnumDeclaration, ifFieldDeclaration, ifInitializerDeclaration, ifMethodDeclaration, ifRecordDeclaration, ifTypeDeclaration, isAnnotationDeclaration, isCallableDeclaration, isClassOrInterfaceDeclaration, isCompactConstructorDeclaration, isConstructorDeclaration, isEnumConstantDeclaration, isEnumDeclaration, isFieldDeclaration, isInitializerDeclaration, isMethodDeclaration, isRecordDeclaration, isTypeDeclaration, setAnnotations, toAnnotationDeclaration, toCallableDeclaration, toClassOrInterfaceDeclaration, toCompactConstructorDeclaration, toConstructorDeclaration, toEnumConstantDeclaration, toEnumDeclaration, toFieldDeclaration, toInitializerDeclaration, toMethodDeclaration, toRecordDeclaration, toTypeDeclarationMethods inherited from class com.github.javaparser.ast.Node
addOrphanComment, containsData, createDefaultPrinter, createDefaultPrinter, customInitialization, equals, findAll, findAll, findAll, findCompilationUnit, findFirst, findFirst, findFirst, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getDataKeys, getDefaultPrinterConfiguration, getLineEndingStyle, getLineEndingStyleOrDefault, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getPrinter, getPrinter, getRange, getSymbolResolver, getTokenRange, hashCode, hasScope, isAncestorOf, isPhantom, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeData, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, stream, stream, toString, toString, tryAddImportToParentCompilationUnit, unregister, walk, walk, walkMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.github.javaparser.HasParentNode
findAncestor, findAncestor, findAncestor, hasParentNode, isDescendantOfMethods inherited from interface com.github.javaparser.ast.nodeTypes.modifiers.NodeWithAbstractModifier
isAbstract, setAbstractMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithAnnotations
addAndGetAnnotation, addAndGetAnnotation, addAnnotation, addAnnotation, addAnnotation, addMarkerAnnotation, addMarkerAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, getAnnotation, getAnnotationByClass, getAnnotationByName, isAnnotationPresent, isAnnotationPresent, setAnnotation, tryAddImportToParentCompilationUnitMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithJavadoc
getComment, getJavadoc, getJavadocComment, hasJavaDocComment, removeJavaDocComment, setComment, setJavadocComment, setJavadocComment, setJavadocComment, setJavadocCommentMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithModifiers
addModifier, getAccessSpecifier, hasModifier, removeModifier, setModifier, setModifiersMethods inherited from interface com.github.javaparser.ast.nodeTypes.modifiers.NodeWithPublicModifier
isPublic, setPublicMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithRange
containsWithin, containsWithinRange, getBegin, getEnd, hasRangeMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
getNameAsExpression, getNameAsString, setNameMethods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithType
getTypeAsString, setType, setType, tryAddImportToParentCompilationUnit
-
Constructor Details
-
AnnotationMemberDeclaration
public AnnotationMemberDeclaration() -
AnnotationMemberDeclaration
public AnnotationMemberDeclaration(NodeList<Modifier> modifiers, Type type, String name, Expression defaultValue) -
AnnotationMemberDeclaration
public AnnotationMemberDeclaration(NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue) -
AnnotationMemberDeclaration
public AnnotationMemberDeclaration(TokenRange tokenRange, NodeList<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)This constructor is used by the parser and is considered private.
-
-
Method Details
-
accept
Description copied from interface:VisitableAccept method for visitor support.- Specified by:
acceptin interfaceVisitable- Type Parameters:
R- the type of the return value of the visitorA- the type the user argument passed to the visitor- Parameters:
v- the visitor implementationarg- the argument passed to the visitor (of type A)- Returns:
- the result of the visit (of type R)
-
accept
Description copied from interface:VisitableAccept method for visitor support. -
getDefaultValue
-
getModifiers
Return the modifiers of this member declaration.- Specified by:
getModifiersin interfaceNodeWithModifiers<AnnotationMemberDeclaration>- Returns:
- modifiers
- See Also:
Modifier
-
getName
- Specified by:
getNamein interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
getType
Description copied from interface:NodeWithTypeGets the type- Specified by:
getTypein interfaceNodeWithType<AnnotationMemberDeclaration,Type>- Returns:
- the type
-
removeDefaultValue
-
setDefaultValue
Sets the default value- Parameters:
defaultValue- the default value, can be null- Returns:
- this, the AnnotationMemberDeclaration
-
setModifiers
- Specified by:
setModifiersin interfaceNodeWithModifiers<AnnotationMemberDeclaration>
-
setName
- Specified by:
setNamein interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
setType
Description copied from interface:NodeWithTypeSets the type- Specified by:
setTypein interfaceNodeWithType<AnnotationMemberDeclaration,Type>- Parameters:
type- the type- Returns:
- this
-
remove
- Overrides:
removein classBodyDeclaration<AnnotationMemberDeclaration>
-
clone
- Overrides:
clonein classBodyDeclaration<AnnotationMemberDeclaration>
-
getMetaModel
- Overrides:
getMetaModelin classBodyDeclaration<AnnotationMemberDeclaration>- Returns:
- get JavaParser specific node introspection information.
-
replace
- Overrides:
replacein classBodyDeclaration<AnnotationMemberDeclaration>
-
isAnnotationMemberDeclaration
public boolean isAnnotationMemberDeclaration()- Overrides:
isAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
asAnnotationMemberDeclaration
- Overrides:
asAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
ifAnnotationMemberDeclaration
- Overrides:
ifAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
resolve
- Specified by:
resolvein interfaceResolvable<ResolvedAnnotationMemberDeclaration>
-
toAnnotationMemberDeclaration
- Overrides:
toAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-