| Package | Description |
|---|---|
| com.github.javaparser.ast.body |
| Modifier and Type | Class and Description |
|---|---|
class |
AnnotationDeclaration
JLS
An annotation type declaration:
@interface X { ... |
class |
AnnotationMemberDeclaration
JLS
The "int id();" in
@interface X { int id(); } |
class |
ClassOrInterfaceDeclaration
JLS
A definition of a class or interface.
|
class |
ConstructorDeclaration
JLS
A constructor declaration:
class X { X() { } } where X(){} is the constructor declaration. |
class |
EmptyMemberDeclaration
Deprecated.
these ;'s should be ignored
|
class |
EnumConstantDeclaration
JLS
One of the values an enum can take.
|
class |
EnumDeclaration
JLS
The declaration of an enum.
|
class |
FieldDeclaration
JLS
The declaration of a field in a class.
|
class |
InitializerDeclaration
JLS
A (possibly static) initializer block.
|
class |
MethodDeclaration
JLS
A method declaration.
|
class |
TypeDeclaration<T extends Node>
A base class for all types of type declarations.
|
Copyright © 2007–2016. All rights reserved.