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> voidaccept(VoidVisitor<A> v, A arg)Accept method for visitor support.AnnotationMemberDeclarationclone()Optional<Expression>getDefaultValue()AnnotationMemberDeclarationMetaModelgetMetaModel()EnumSet<Modifier>getModifiers()Return the modifiers of this member declaration.SimpleNamegetName()List<NodeList<?>>getNodeLists()The list of NodeLists owned by this node.TypegetType()Gets the typebooleanremove(Node node)AnnotationMemberDeclarationremoveDefaultValue()booleanreplace(Node node, Node replacementNode)AnnotationMemberDeclarationsetDefaultValue(Expression defaultValue)Sets the default valueAnnotationMemberDeclarationsetModifiers(EnumSet<Modifier> modifiers)AnnotationMemberDeclarationsetName(SimpleName name)AnnotationMemberDeclarationsetType(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: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
@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:
getModifiersin interfaceNodeWithModifiers<AnnotationMemberDeclaration>- Returns:
- modifiers
- See Also:
Modifier
-
getName
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public SimpleName getName()
- Specified by:
getNamein interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
getType
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public Type getType()
Description copied from interface:NodeWithTypeGets the type- Specified by:
getTypein 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:
setModifiersin interfaceNodeWithModifiers<AnnotationMemberDeclaration>
-
setName
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public AnnotationMemberDeclaration setName(SimpleName name)
- Specified by:
setNamein interfaceNodeWithSimpleName<AnnotationMemberDeclaration>
-
setType
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public AnnotationMemberDeclaration setType(Type type)
Description copied from interface:NodeWithTypeSets the type- Specified by:
setTypein 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:NodeThe list of NodeLists owned by this node.- Overrides:
getNodeListsin classBodyDeclaration<AnnotationMemberDeclaration>
-
remove
@Generated("com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
- Overrides:
removein classBodyDeclaration<AnnotationMemberDeclaration>
-
clone
@Generated("com.github.javaparser.generator.core.node.CloneGenerator") public AnnotationMemberDeclaration clone()
- Overrides:
clonein classBodyDeclaration<AnnotationMemberDeclaration>
-
getMetaModel
@Generated("com.github.javaparser.generator.core.node.GetMetaModelGenerator") public AnnotationMemberDeclarationMetaModel getMetaModel()
- Overrides:
getMetaModelin 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:
replacein classBodyDeclaration<AnnotationMemberDeclaration>
-
-