com.github.antlrjavaparser.api.body
Class EnumDeclaration

java.lang.Object
  extended by com.github.antlrjavaparser.api.Node
      extended by com.github.antlrjavaparser.api.body.BodyDeclaration
          extended by com.github.antlrjavaparser.api.body.TypeDeclaration
              extended by com.github.antlrjavaparser.api.body.EnumDeclaration

public final class EnumDeclaration
extends TypeDeclaration

Author:
Julio Vilmar Gesser

Constructor Summary
EnumDeclaration()
           
EnumDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, String name, List<ClassOrInterfaceType> implementsList, List<EnumConstantDeclaration> entries, List<BodyDeclaration> members)
           
EnumDeclaration(int modifiers, String name)
           
EnumDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, String name, List<ClassOrInterfaceType> implementsList, List<EnumConstantDeclaration> entries, List<BodyDeclaration> members)
           
 
Method Summary
<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.
 List<EnumConstantDeclaration> getEntries()
           
 List<ClassOrInterfaceType> getImplements()
           
 void setEntries(List<EnumConstantDeclaration> entries)
           
 void setImplements(List<ClassOrInterfaceType> implementsList)
           
 
Methods inherited from class com.github.antlrjavaparser.api.body.TypeDeclaration
getMembers, getModifiers, getName, setMembers, setModifiers, setName
 
Methods inherited from class com.github.antlrjavaparser.api.body.BodyDeclaration
getAnnotations, getJavaDoc, setAnnotations, setJavaDoc
 
Methods inherited from class com.github.antlrjavaparser.api.Node
equals, getBeginColumn, getBeginComments, getBeginLine, getData, getEndColumn, getEndComments, getEndLine, getInternalComments, hashCode, setBeginColumn, setBeginComments, setBeginLine, setData, setEndColumn, setEndComments, setEndLine, setInternalComments, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EnumDeclaration

public EnumDeclaration()

EnumDeclaration

public EnumDeclaration(int modifiers,
                       String name)

EnumDeclaration

public EnumDeclaration(JavadocComment javaDoc,
                       int modifiers,
                       List<AnnotationExpr> annotations,
                       String name,
                       List<ClassOrInterfaceType> implementsList,
                       List<EnumConstantDeclaration> entries,
                       List<BodyDeclaration> members)

EnumDeclaration

public EnumDeclaration(int beginLine,
                       int beginColumn,
                       int endLine,
                       int endColumn,
                       JavadocComment javaDoc,
                       int modifiers,
                       List<AnnotationExpr> annotations,
                       String name,
                       List<ClassOrInterfaceType> implementsList,
                       List<EnumConstantDeclaration> entries,
                       List<BodyDeclaration> members)
Method Detail

accept

public <R,A> R accept(GenericVisitor<R,A> v,
                      A arg)
Description copied from class: Node
Accept method for visitor support.

Specified by:
accept in class Node
Type Parameters:
R - the type the return value of the visitor
A - the type the argument passed for the visitor
Parameters:
v - the visitor implementation
arg - any value relevant for the visitor
Returns:
the result of the visit

accept

public <A> void accept(VoidVisitor<A> v,
                       A arg)
Description copied from class: Node
Accept method for visitor support.

Specified by:
accept in class Node
Type Parameters:
A - the type the argument passed for the visitor
Parameters:
v - the visitor implementation
arg - any value relevant for the visitor

getEntries

public List<EnumConstantDeclaration> getEntries()

getImplements

public List<ClassOrInterfaceType> getImplements()

setEntries

public void setEntries(List<EnumConstantDeclaration> entries)

setImplements

public void setImplements(List<ClassOrInterfaceType> implementsList)


Copyright © 2013. All Rights Reserved.