Class EnumConstantDeclaration
java.lang.Object
com.github.javaparser.ast.Node
com.github.javaparser.ast.body.BodyDeclaration<EnumConstantDeclaration>
com.github.javaparser.ast.body.EnumConstantDeclaration
- All Implemented Interfaces:
NodeWithAnnotations<EnumConstantDeclaration>, NodeWithArguments<EnumConstantDeclaration>, NodeWithJavadoc<EnumConstantDeclaration>, NodeWithRange<Node>, NodeWithSimpleName<EnumConstantDeclaration>, NodeWithTokenRange<Node>, Observable, Visitable, HasParentNode<Node>, Resolvable<ResolvedEnumConstantDeclaration>, Cloneable
public class EnumConstantDeclaration
extends BodyDeclaration<EnumConstantDeclaration>
implements NodeWithJavadoc<EnumConstantDeclaration>, NodeWithSimpleName<EnumConstantDeclaration>, NodeWithArguments<EnumConstantDeclaration>, Resolvable<ResolvedEnumConstantDeclaration>
One of the values an enum can take. A(1) and B(2) in this example:
enum X { A(1), B(2) }-
Nested Class Summary
Nested classes/interfaces inherited from class Node
Node.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversal -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate NodeList<Expression> private NodeList<BodyDeclaration<?>> private SimpleNameFields inherited from class Node
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, LINE_SEPARATOR_KEY, NODE_BY_BEGIN_POSITION, PHANTOM_KEY, prettyPrinterNoCommentsConfiguration, PRINTER_KEY, SYMBOL_RESOLVER_KEY -
Constructor Summary
ConstructorsConstructorDescriptionEnumConstantDeclaration(NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> classBody) EnumConstantDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> classBody) This constructor is used by the parser and is considered private. -
Method Summary
Modifier and TypeMethodDescription<R,A> R accept(GenericVisitor<R, A> v, A arg) Accept method for visitor support.<A> voidaccept(VoidVisitor<A> v, A arg) Accept method for visitor support.clone()getName()voidbooleanbooleanbooleanresolve()setArguments(NodeList<Expression> arguments) setClassBody(NodeList<BodyDeclaration<?>> classBody) setName(SimpleName name) Methods inherited from class BodyDeclaration
asAnnotationDeclaration, asAnnotationMemberDeclaration, asCallableDeclaration, asClassOrInterfaceDeclaration, asCompactConstructorDeclaration, asConstructorDeclaration, asEnumDeclaration, asFieldDeclaration, asInitializerDeclaration, asMethodDeclaration, asRecordDeclaration, asTypeDeclaration, getAnnotations, ifAnnotationDeclaration, ifAnnotationMemberDeclaration, ifCallableDeclaration, ifClassOrInterfaceDeclaration, ifCompactConstructorDeclaration, ifConstructorDeclaration, ifEnumDeclaration, ifFieldDeclaration, ifInitializerDeclaration, ifMethodDeclaration, ifRecordDeclaration, ifTypeDeclaration, isAnnotationDeclaration, isAnnotationMemberDeclaration, isCallableDeclaration, isClassOrInterfaceDeclaration, isCompactConstructorDeclaration, isConstructorDeclaration, isEnumDeclaration, isFieldDeclaration, isInitializerDeclaration, isMethodDeclaration, isRecordDeclaration, isTypeDeclaration, setAnnotations, toAnnotationDeclaration, toAnnotationMemberDeclaration, toCallableDeclaration, toClassOrInterfaceDeclaration, toCompactConstructorDeclaration, toConstructorDeclaration, toEnumDeclaration, toFieldDeclaration, toInitializerDeclaration, toMethodDeclaration, toRecordDeclaration, toTypeDeclarationMethods inherited from class Node
addOrphanComment, containsData, createDefaultPrinter, createDefaultPrinter, customInitialization, equals, findAll, findAll, findAll, findByRange, findCompilationUnit, findData, 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 interface HasParentNode
findAncestor, findAncestor, findAncestor, hasParentNode, isDescendantOfMethods inherited from interface NodeWithAnnotations
addAndGetAnnotation, addAndGetAnnotation, addAnnotation, addAnnotation, addAnnotation, addMarkerAnnotation, addMarkerAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, getAnnotation, getAnnotationByClass, getAnnotationByName, isAnnotationPresent, isAnnotationPresent, setAnnotation, tryAddImportToParentCompilationUnitMethods inherited from interface NodeWithArguments
addArgument, addArgument, getArgument, getArgumentPosition, getArgumentPosition, setArgumentMethods inherited from interface NodeWithJavadoc
getComment, getJavadoc, getJavadocComment, hasJavaDocComment, removeJavaDocComment, setComment, setJavadocComment, setJavadocComment, setJavadocComment, setJavadocComment, setJavadocCommentMethods inherited from interface NodeWithRange
containsWithin, containsWithinRange, getBegin, getEnd, hasRangeMethods inherited from interface NodeWithSimpleName
getNameAsExpression, getNameAsString, setName
-
Field Details
-
name
-
arguments
-
classBody
-
-
Constructor Details
-
EnumConstantDeclaration
public EnumConstantDeclaration() -
EnumConstantDeclaration
-
EnumConstantDeclaration
public EnumConstantDeclaration(NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> classBody) -
EnumConstantDeclaration
public EnumConstantDeclaration(TokenRange tokenRange, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> classBody) 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. -
getArguments
- Specified by:
getArgumentsin interfaceNodeWithArguments<EnumConstantDeclaration>
-
getClassBody
-
getName
- Specified by:
getNamein interfaceNodeWithSimpleName<EnumConstantDeclaration>
-
setArguments
- Specified by:
setArgumentsin interfaceNodeWithArguments<EnumConstantDeclaration>
-
setClassBody
-
setName
- Specified by:
setNamein interfaceNodeWithSimpleName<EnumConstantDeclaration>
-
remove
- Overrides:
removein classBodyDeclaration<EnumConstantDeclaration>
-
clone
- Overrides:
clonein classBodyDeclaration<EnumConstantDeclaration>
-
getMetaModel
- Overrides:
getMetaModelin classBodyDeclaration<EnumConstantDeclaration>- Returns:
- get JavaParser specific node introspection information.
-
replace
- Overrides:
replacein classBodyDeclaration<EnumConstantDeclaration>
-
isEnumConstantDeclaration
public boolean isEnumConstantDeclaration()- Overrides:
isEnumConstantDeclarationin classBodyDeclaration<EnumConstantDeclaration>
-
asEnumConstantDeclaration
- Overrides:
asEnumConstantDeclarationin classBodyDeclaration<EnumConstantDeclaration>
-
ifEnumConstantDeclaration
- Overrides:
ifEnumConstantDeclarationin classBodyDeclaration<EnumConstantDeclaration>
-
resolve
- Specified by:
resolvein interfaceResolvable<ResolvedEnumConstantDeclaration>
-
toEnumConstantDeclaration
- Overrides:
toEnumConstantDeclarationin classBodyDeclaration<EnumConstantDeclaration>
-