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 final 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, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration, SYMBOL_RESOLVER_KEY
-
-
Constructor Summary
Constructors Constructor Description AnnotationMemberDeclaration()AnnotationMemberDeclaration(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
-
Methods inherited from class com.github.javaparser.ast.body.BodyDeclaration
asAnnotationDeclaration, asCallableDeclaration, asClassOrInterfaceDeclaration, asConstructorDeclaration, asEnumConstantDeclaration, asEnumDeclaration, asFieldDeclaration, asInitializerDeclaration, asMethodDeclaration, asTypeDeclaration, getAnnotations, ifAnnotationDeclaration, ifCallableDeclaration, ifClassOrInterfaceDeclaration, ifConstructorDeclaration, ifEnumConstantDeclaration, ifEnumDeclaration, ifFieldDeclaration, ifInitializerDeclaration, ifMethodDeclaration, ifTypeDeclaration, isAnnotationDeclaration, isCallableDeclaration, isClassOrInterfaceDeclaration, isConstructorDeclaration, isEnumConstantDeclaration, isEnumDeclaration, isFieldDeclaration, isInitializerDeclaration, isMethodDeclaration, isTypeDeclaration, setAnnotations, toAnnotationDeclaration, toCallableDeclaration, toClassOrInterfaceDeclaration, toConstructorDeclaration, toEnumConstantDeclaration, toEnumDeclaration, toFieldDeclaration, toInitializerDeclaration, toMethodDeclaration, toTypeDeclaration
-
Methods inherited from class com.github.javaparser.ast.Node
addOrphanComment, containsData, customInitialization, equals, findAll, findAll, findCompilationUnit, findFirst, findFirst, findFirst, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getSymbolResolver, getTokenRange, hasComment, hashCode, 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, walk
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.github.javaparser.HasParentNode
findAncestor, findAncestor, findParent, getAncestorOfType
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.modifiers.NodeWithAbstractModifier
isAbstract, setAbstract
-
Methods 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, tryAddImportToParentCompilationUnit
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithJavadoc
getComment, getJavadoc, getJavadocComment, hasJavaDocComment, removeJavaDocComment, setComment, setJavadocComment, setJavadocComment, setJavadocComment, setJavadocComment
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithModifiers
addModifier, getAccessSpecifier, hasModifier, removeModifier, setModifier, setModifiers
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.modifiers.NodeWithPublicModifier
isPublic, setPublic
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithRange
containsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBefore
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
getNameAsExpression, getNameAsString, setName
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithType
getTypeAsString, setType, setType, tryAddImportToParentCompilationUnit
-
-
-
-
Constructor Detail
-
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 Detail
-
accept
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
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
public <A> void accept(VoidVisitor<A> v, A arg)
Description copied from interface:VisitableAccept method for visitor support.
-
getDefaultValue
public Optional<Expression> getDefaultValue()
-
getModifiers
public NodeList<Modifier> getModifiers()
Return the modifiers of this member declaration.- Specified by:
getModifiersin interfaceNodeWithModifiers<AnnotationMemberDeclaration>- Returns:
- modifiers
- See Also:
Modifier
-
getName
public SimpleName getName()
- Specified by:
getNamein interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
getType
public Type getType()
Description copied from interface:NodeWithTypeGets the type- Specified by:
getTypein interfaceNodeWithType<AnnotationMemberDeclaration,Type>- Returns:
- the type
-
removeDefaultValue
public AnnotationMemberDeclaration removeDefaultValue()
-
setDefaultValue
public AnnotationMemberDeclaration setDefaultValue(Expression defaultValue)
Sets the default value- Parameters:
defaultValue- the default value, can be null- Returns:
- this, the AnnotationMemberDeclaration
-
setModifiers
public AnnotationMemberDeclaration setModifiers(NodeList<Modifier> modifiers)
- Specified by:
setModifiersin interfaceNodeWithModifiers<AnnotationMemberDeclaration>
-
setName
public AnnotationMemberDeclaration setName(SimpleName name)
- Specified by:
setNamein interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
setType
public AnnotationMemberDeclaration setType(Type type)
Description copied from interface:NodeWithTypeSets the type- Specified by:
setTypein interfaceNodeWithType<AnnotationMemberDeclaration,Type>- Parameters:
type- the type- Returns:
- this
-
remove
public boolean remove(Node node)
- Overrides:
removein classBodyDeclaration<AnnotationMemberDeclaration>
-
clone
public AnnotationMemberDeclaration clone()
- Overrides:
clonein classBodyDeclaration<AnnotationMemberDeclaration>
-
getMetaModel
public AnnotationMemberDeclarationMetaModel getMetaModel()
- Overrides:
getMetaModelin classBodyDeclaration<AnnotationMemberDeclaration>- Returns:
- get JavaParser specific node introspection information.
-
replace
public boolean replace(Node node, Node replacementNode)
- Overrides:
replacein classBodyDeclaration<AnnotationMemberDeclaration>
-
isAnnotationMemberDeclaration
public boolean isAnnotationMemberDeclaration()
- Overrides:
isAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
asAnnotationMemberDeclaration
public AnnotationMemberDeclaration asAnnotationMemberDeclaration()
- Overrides:
asAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
ifAnnotationMemberDeclaration
public void ifAnnotationMemberDeclaration(Consumer<AnnotationMemberDeclaration> action)
- Overrides:
ifAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
resolve
public ResolvedAnnotationMemberDeclaration resolve()
- Specified by:
resolvein interfaceResolvable<ResolvedAnnotationMemberDeclaration>
-
toAnnotationMemberDeclaration
public Optional<AnnotationMemberDeclaration> toAnnotationMemberDeclaration()
- Overrides:
toAnnotationMemberDeclarationin classBodyDeclaration<AnnotationMemberDeclaration>
-
-