Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithModifiers
-
Packages that use NodeWithModifiers Package Description com.github.javaparser.ast.body com.github.javaparser.ast.expr com.github.javaparser.ast.modules com.github.javaparser.ast.nodeTypes.modifiers -
-
Uses of NodeWithModifiers in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithModifiers 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.classEnumDeclarationThe declaration of an enum.enum X { ... }classFieldDeclarationThe declaration of a field in a class.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. -
Uses of NodeWithModifiers in com.github.javaparser.ast.expr
Classes in com.github.javaparser.ast.expr that implement NodeWithModifiers Modifier and Type Class Description classRecordPatternExprRecord PatternsclassTypePatternExprThe instanceof statementclassVariableDeclarationExprA declaration of variables. -
Uses of NodeWithModifiers in com.github.javaparser.ast.modules
Classes in com.github.javaparser.ast.modules that implement NodeWithModifiers Modifier and Type Class Description classModuleRequiresDirectiveA require directive in module-info.java. -
Uses of NodeWithModifiers in com.github.javaparser.ast.nodeTypes.modifiers
Subinterfaces of NodeWithModifiers in com.github.javaparser.ast.nodeTypes.modifiers Modifier and Type Interface Description interfaceNodeWithAbstractModifier<N extends Node>A node that can be abstract.interfaceNodeWithAccessModifiers<N extends Node>A node that can be public, protected, and/or private.interfaceNodeWithFinalModifier<N extends Node>A node that can be final.interfaceNodeWithPrivateModifier<N extends Node>A node that can be private.interfaceNodeWithProtectedModifier<N extends Node>A node that can be protected.interfaceNodeWithPublicModifier<N extends Node>A node that can be public.interfaceNodeWithStaticModifier<N extends Node>A node that can be static.interfaceNodeWithStrictfpModifier<N extends Node>A node that can be strictfp.
-