Package org.sonar.plugins.java.api.tree
Interface EnumConstantTree
-
- All Superinterfaces:
Tree
- All Known Implementing Classes:
EnumConstantTreeImpl
@Beta public interface EnumConstantTree extends Tree
Enum constant. JLS 8.9.1- Since:
- Java 1.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NewClassTree
initializer()
ModifiersTree
modifiers()
SyntaxToken
separatorToken()
IdentifierTree
simpleName()
-
-
-
Method Detail
-
modifiers
ModifiersTree modifiers()
-
simpleName
IdentifierTree simpleName()
-
initializer
NewClassTree initializer()
-
separatorToken
@Nullable SyntaxToken separatorToken()
-
-