NodeWithAccessModifiers<EnumDeclaration>
, NodeWithPrivateModifier<EnumDeclaration>
, NodeWithProtectedModifier<EnumDeclaration>
, NodeWithPublicModifier<EnumDeclaration>
, NodeWithStaticModifier<EnumDeclaration>
, NodeWithStrictfpModifier<EnumDeclaration>
, NodeWithAnnotations<EnumDeclaration>
, NodeWithImplements<EnumDeclaration>
, NodeWithJavadoc<EnumDeclaration>
, NodeWithMembers<EnumDeclaration>
, NodeWithModifiers<EnumDeclaration>
, NodeWithRange<EnumDeclaration>
, NodeWithSimpleName<EnumDeclaration>
, NodeWithTokenRange<EnumDeclaration>
, Observable
, Visitable
, HasParentNode<EnumDeclaration>
, Cloneable
public final class EnumDeclaration extends TypeDeclaration<EnumDeclaration> implements NodeWithImplements<EnumDeclaration>
enum X { ... }
Node.ObserverRegistrationMode, Node.Parsedness
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration
Constructor | Description |
---|---|
EnumDeclaration() |
|
EnumDeclaration(TokenRange tokenRange,
EnumSet<Modifier> modifiers,
NodeList<AnnotationExpr> annotations,
SimpleName name,
NodeList<ClassOrInterfaceType> implementedTypes,
NodeList<EnumConstantDeclaration> entries,
NodeList<BodyDeclaration<?>> members) |
This constructor is used by the parser and is considered private.
|
EnumDeclaration(EnumSet<Modifier> modifiers,
NodeList<AnnotationExpr> annotations,
SimpleName name,
NodeList<ClassOrInterfaceType> implementedTypes,
NodeList<EnumConstantDeclaration> entries,
NodeList<BodyDeclaration<?>> members) |
|
EnumDeclaration(EnumSet<Modifier> modifiers,
String name) |
Modifier and Type | Method | Description |
---|---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg) |
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg) |
Accept method for visitor support.
|
EnumDeclaration |
addEntry(EnumConstantDeclaration element) |
|
EnumConstantDeclaration |
addEnumConstant(String name) |
|
EnumDeclaration |
clone() |
|
NodeList<EnumConstantDeclaration> |
getEntries() |
|
EnumConstantDeclaration |
getEntry(int i) |
|
NodeList<ClassOrInterfaceType> |
getImplementedTypes() |
|
EnumDeclarationMetaModel |
getMetaModel() |
|
List<NodeList<?>> |
getNodeLists() |
The list of NodeLists owned by this node.
|
boolean |
remove(Node node) |
|
boolean |
replace(Node node,
Node replacementNode) |
|
EnumDeclaration |
setEntries(NodeList<EnumConstantDeclaration> entries) |
|
EnumDeclaration |
setEntry(int i,
EnumConstantDeclaration element) |
|
EnumDeclaration |
setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes) |
getAnnotations, setAnnotations
getAncestorOfType
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
addAndGetAnnotation, addAndGetAnnotation, addAnnotation, addAnnotation, addAnnotation, addMarkerAnnotation, addMarkerAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, getAnnotation, getAnnotationByClass, getAnnotationByName, isAnnotationPresent, isAnnotationPresent, setAnnotation, tryAddImportToParentCompilationUnit
addImplementedType, addImplementedType, addImplementedType, addImplements, addImplements, getImplementedTypes, setImplementedType, tryAddImportToParentCompilationUnit
getComment, getJavadoc, getJavadocComment, hasJavaDocComment, removeJavaDocComment, setComment, setJavadocComment, setJavadocComment, setJavadocComment
addField, addField, addField, addInitializer, addMethod, addPrivateField, addPrivateField, addProtectedField, addProtectedField, addPublicField, addPublicField, addStaticInitializer, getFieldByName, getFields, getMember, getMethods, getMethodsByName, getMethodsByParameterTypes, getMethodsByParameterTypes, getMethodsBySignature, setMember, tryAddImportToParentCompilationUnit
addModifier, removeModifier, setModifier
isPrivate, setPrivate
isProtected, setProtected
isPublic, setPublic
containsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBefore
getNameAsString, setName
isStatic, setStatic
isStrictfp, setStrictfp
finalize, getClass, notify, notifyAll, wait, wait, wait
addMember, getCallablesWithSignature, getMembers, getModifiers, getName, isNestedType, isTopLevelType, setMembers, setModifiers, setName
public EnumDeclaration()
public EnumDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<EnumConstantDeclaration> entries, NodeList<BodyDeclaration<?>> members)
@Generated("com.github.javaparser.generator.core.node.MainConstructorGenerator") public EnumDeclaration(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<EnumConstantDeclaration> entries, NodeList<BodyDeclaration<?>> members)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Visitable
accept
in interface Visitable
R
- the type of the return value of the visitorA
- the type the user argument passed to the visitorv
- the visitor implementationarg
- the argument passed to the visitor (of type A)public <A> void accept(VoidVisitor<A> v, A arg)
Visitable
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public NodeList<EnumConstantDeclaration> getEntries()
public EnumConstantDeclaration getEntry(int i)
public EnumDeclaration setEntry(int i, EnumConstantDeclaration element)
public EnumDeclaration addEntry(EnumConstantDeclaration element)
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public NodeList<ClassOrInterfaceType> getImplementedTypes()
getImplementedTypes
in interface NodeWithImplements<EnumDeclaration>
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public EnumDeclaration setEntries(NodeList<EnumConstantDeclaration> entries)
@Generated("com.github.javaparser.generator.core.node.PropertyGenerator") public EnumDeclaration setImplementedTypes(NodeList<ClassOrInterfaceType> implementedTypes)
setImplementedTypes
in interface NodeWithImplements<EnumDeclaration>
public EnumConstantDeclaration addEnumConstant(String name)
@Generated("com.github.javaparser.generator.core.node.GetNodeListsGenerator") public List<NodeList<?>> getNodeLists()
Node
getNodeLists
in class TypeDeclaration<EnumDeclaration>
@Generated("com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
remove
in class TypeDeclaration<EnumDeclaration>
@Generated("com.github.javaparser.generator.core.node.CloneGenerator") public EnumDeclaration clone()
clone
in class TypeDeclaration<EnumDeclaration>
@Generated("com.github.javaparser.generator.core.node.GetMetaModelGenerator") public EnumDeclarationMetaModel getMetaModel()
getMetaModel
in class TypeDeclaration<EnumDeclaration>
@Generated("com.github.javaparser.generator.core.node.ReplaceMethodGenerator") public boolean replace(Node node, Node replacementNode)
replace
in class TypeDeclaration<EnumDeclaration>
Copyright © 2007–2019. All rights reserved.