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>
,Cloneable
public final class AnnotationMemberDeclaration extends BodyDeclaration<AnnotationMemberDeclaration> implements NodeWithJavadoc<AnnotationMemberDeclaration>, NodeWithSimpleName<AnnotationMemberDeclaration>, NodeWithType<AnnotationMemberDeclaration,Type>, NodeWithPublicModifier<AnnotationMemberDeclaration>, NodeWithAbstractModifier<AnnotationMemberDeclaration>
The "int id();" in@interface X { int id(); }
- Author:
- Julio Vilmar Gesser
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.github.javaparser.ast.Node
Node.ObserverRegistrationMode, Node.Parsedness
-
-
Field Summary
-
Fields inherited from class com.github.javaparser.ast.Node
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration
-
-
Constructor Summary
Constructors Constructor Description AnnotationMemberDeclaration()
AnnotationMemberDeclaration(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)
This constructor is used by the parser and is considered private.AnnotationMemberDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)
AnnotationMemberDeclaration(EnumSet<Modifier> modifiers, Type type, String name, Expression defaultValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,A>
Raccept(GenericVisitor<R,A> v, A arg)
Accept method for visitor support.<A> void
accept(VoidVisitor<A> v, A arg)
Accept method for visitor support.AnnotationMemberDeclaration
clone()
Optional<Expression>
getDefaultValue()
AnnotationMemberDeclarationMetaModel
getMetaModel()
EnumSet<Modifier>
getModifiers()
Return the modifiers of this member declaration.SimpleName
getName()
List<NodeList<?>>
getNodeLists()
The list of NodeLists owned by this node.Type
getType()
Gets the typeboolean
remove(Node node)
AnnotationMemberDeclaration
removeDefaultValue()
boolean
replace(Node node, Node replacementNode)
AnnotationMemberDeclaration
setDefaultValue(Expression defaultValue)
Sets the default valueAnnotationMemberDeclaration
setModifiers(EnumSet<Modifier> modifiers)
AnnotationMemberDeclaration
setName(SimpleName name)
AnnotationMemberDeclaration
setType(Type type)
Sets the type-
Methods inherited from class com.github.javaparser.ast.body.BodyDeclaration
getAnnotations, setAnnotations
-
Methods inherited from class com.github.javaparser.ast.Node
addOrphanComment, customInitialization, equals, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getTokenRange, hasComment, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, toString, toString, tryAddImportToParentCompilationUnit, unregister
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.github.javaparser.HasParentNode
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, 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
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithModifiers
addModifier, removeModifier, setModifier
-
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
getNameAsString, setName
-
Methods inherited from interface com.github.javaparser.ast.nodeTypes.NodeWithType
setType, setType, tryAddImportToParentCompilationUnit
-
-
-
-
Constructor Detail
-
AnnotationMemberDeclaration
public AnnotationMemberDeclaration()
-
AnnotationMemberDeclaration
public AnnotationMemberDeclaration(EnumSet<Modifier> modifiers, Type type, String name, Expression defaultValue)
-
AnnotationMemberDeclaration
public AnnotationMemberDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, Type type, SimpleName name, Expression defaultValue)
-
AnnotationMemberDeclaration
@Generated("com.github.javaparser.generator.core.node.MainConstructorGenerator") public AnnotationMemberDeclaration(TokenRange tokenRange, EnumSet<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:Visitable
Accept method for visitor support.- Specified by:
accept
in 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:Visitable
Accept method for visitor support.
-
getDefaultValue
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public Optional<Expression> getDefaultValue()
-
getModifiers
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public EnumSet<Modifier> getModifiers()
Return the modifiers of this member declaration.- Specified by:
getModifiers
in interfaceNodeWithModifiers<AnnotationMemberDeclaration>
- Returns:
- modifiers
- See Also:
Modifier
-
getName
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public SimpleName getName()
- Specified by:
getName
in interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
getType
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public Type getType()
Description copied from interface:NodeWithType
Gets the type- Specified by:
getType
in interfaceNodeWithType<AnnotationMemberDeclaration,Type>
- Returns:
- the type
-
removeDefaultValue
@Generated("com.github.javaparser.generator.core.node.RemoveMethodGenerator") public AnnotationMemberDeclaration removeDefaultValue()
-
setDefaultValue
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public AnnotationMemberDeclaration setDefaultValue(Expression defaultValue)
Sets the default value- Parameters:
defaultValue
- the default value, can be null- Returns:
- this, the AnnotationMemberDeclaration
-
setModifiers
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public AnnotationMemberDeclaration setModifiers(EnumSet<Modifier> modifiers)
- Specified by:
setModifiers
in interfaceNodeWithModifiers<AnnotationMemberDeclaration>
-
setName
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public AnnotationMemberDeclaration setName(SimpleName name)
- Specified by:
setName
in interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
setType
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public AnnotationMemberDeclaration setType(Type type)
Description copied from interface:NodeWithType
Sets the type- Specified by:
setType
in interfaceNodeWithType<AnnotationMemberDeclaration,Type>
- Parameters:
type
- the type- Returns:
- this
-
getNodeLists
@Generated("com.github.javaparser.generator.core.node.GetNodeListsGenerator") public List<NodeList<?>> getNodeLists()
Description copied from class:Node
The list of NodeLists owned by this node.- Overrides:
getNodeLists
in classBodyDeclaration<AnnotationMemberDeclaration>
-
remove
@Generated("com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
- Overrides:
remove
in classBodyDeclaration<AnnotationMemberDeclaration>
-
clone
@Generated("com.github.javaparser.generator.core.node.CloneGenerator") public AnnotationMemberDeclaration clone()
- Overrides:
clone
in classBodyDeclaration<AnnotationMemberDeclaration>
-
getMetaModel
@Generated("com.github.javaparser.generator.core.node.GetMetaModelGenerator") public AnnotationMemberDeclarationMetaModel getMetaModel()
- Overrides:
getMetaModel
in classBodyDeclaration<AnnotationMemberDeclaration>
- Returns:
- get JavaParser specific node introspection information.
-
replace
@Generated("com.github.javaparser.generator.core.node.ReplaceMethodGenerator") public boolean replace(Node node, Node replacementNode)
- Overrides:
replace
in classBodyDeclaration<AnnotationMemberDeclaration>
-
-