Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
Packages that use NodeWithSimpleName
Package
Description
-
Uses of NodeWithSimpleName in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithSimpleNameModifier and TypeClassDescriptionclass
An annotation type declaration.@interface X { ... }
class
The "int id();" in@interface X { int id(); }
class
CallableDeclaration<T extends CallableDeclaration<?>>
Represents a declaration which is callable eg.class
A definition of a class or interface.class X { ... }
interface X { ... }
class
The record declaration's constructorclass
A constructor declaration:class X { X() { } }
where X(){} is the constructor declaration.class
One of the values an enum can take.class
The declaration of an enum.enum X { ... }
class
A method declaration.class
The parameters to a method or lambda.class
The record declarationclass
TypeDeclaration<T extends TypeDeclaration<?>>
A base class for all types of type declarations.class
The declaration of a variable.
Inint x = 14, y = 3;
"int x = 14" and "int y = 3" are VariableDeclarators. -
Uses of NodeWithSimpleName in com.github.javaparser.ast.expr
Classes in com.github.javaparser.ast.expr that implement NodeWithSimpleNameModifier and TypeClassDescriptionclass
Access of a field of an object or a class.class
A value for a member of an annotation.class
A method call on an object or a class.class
Whenever a SimpleName is used in an expression, it is wrapped in NameExpr.class
The instanceof statement -
Uses of NodeWithSimpleName in com.github.javaparser.ast.nodeTypes
Subinterfaces of NodeWithSimpleName in com.github.javaparser.ast.nodeTypesModifier and TypeInterfaceDescriptioninterface
NodeWithMembers<N extends Node>
A node having members. -
Uses of NodeWithSimpleName in com.github.javaparser.ast.type
Classes in com.github.javaparser.ast.type that implement NodeWithSimpleNameModifier and TypeClassDescriptionclass
A class or an interface type.class
A type parameter. -
Uses of NodeWithSimpleName in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Classes in com.github.javaparser.symbolsolver.javaparsermodel.declarations with type parameters of type NodeWithSimpleNameModifier and TypeClassDescriptionclass
JavaParserTypeAdapter<T extends Node & NodeWithSimpleName<T> & NodeWithMembers<T> & NodeWithAnnotations<T>>