Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithSimpleName
-
Packages that use NodeWithSimpleName Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr com.github.javaparser.ast.nodeTypes com.github.javaparser.ast.type -
-
Uses of NodeWithSimpleName in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithSimpleName Modifier and Type Class Description classAnnotationDeclarationAn annotation type declaration.@interface X { ... }classAnnotationMemberDeclarationThe "int id();" in@interface X { int id(); }classCallableDeclaration<T extends CallableDeclaration<?>>Represents a declaration which is callable eg. a method or a constructor.classClassOrInterfaceDeclarationA definition of a class or interface.class X { ... }interface X { ... }classCompactConstructorDeclarationThe record declaration's constructorclassConstructorDeclarationA constructor declaration:class X { X() { } }where X(){} is the constructor declaration.classEnumConstantDeclarationOne of the values an enum can take.classEnumDeclarationThe declaration of an enum.enum X { ... }classMethodDeclarationA method declaration.classParameterThe parameters to a method or lambda.classRecordDeclarationThe record declarationclassTypeDeclaration<T extends TypeDeclaration<?>>A base class for all types of type declarations.classVariableDeclaratorThe 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 NodeWithSimpleName Modifier and Type Class Description classFieldAccessExprAccess of a field of an object or a class.classMemberValuePairA value for a member of an annotation.classMethodCallExprA method call on an object or a class.classNameExprWhenever a SimpleName is used in an expression, it is wrapped in NameExpr.classTypePatternExprThe instanceof statement -
Uses of NodeWithSimpleName in com.github.javaparser.ast.nodeTypes
Subinterfaces of NodeWithSimpleName in com.github.javaparser.ast.nodeTypes Modifier and Type Interface Description interfaceNodeWithMembers<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 NodeWithSimpleName Modifier and Type Class Description classClassOrInterfaceTypeA class or an interface type.classTypeParameterA type parameter.
-