| Class | Description |
|---|---|
| AnnotationDeclaration |
An annotation type declaration.
@interface X { ... |
| AnnotationMemberDeclaration |
The "int id();" in
@interface X { int id(); } |
| BodyDeclaration<T extends Node> |
Any declaration that can appear between the { and } of a class, interface, or enum.
|
| ClassOrInterfaceDeclaration |
A definition of a class or interface.
class X { ... |
| ConstructorDeclaration |
A constructor declaration:
class X { X() { } } where X(){} is the constructor declaration. |
| EmptyMemberDeclaration | Deprecated
these ;'s should be ignored
|
| EnumConstantDeclaration |
One of the values an enum can take.
|
| EnumDeclaration |
The declaration of an enum.
enum X { ... |
| FieldDeclaration |
The declaration of a field in a class.
|
| InitializerDeclaration |
A (possibly static) initializer body.
|
| MethodDeclaration |
A method declaration.
|
| Parameter |
The parameters to a method or lambda.
|
| TypeDeclaration<T extends Node> |
A base class for all types of type declarations.
|
| VariableDeclarator |
The declaration of a variable.
int x = 14; |
Copyright © 2007–2017. All rights reserved.