Uses of Interface
com.github.javaparser.ast.nodeTypes.NodeWithModifiers
Packages that use NodeWithModifiers
Package
Description
-
Uses of NodeWithModifiers in com.github.javaparser.ast.body
Classes in com.github.javaparser.ast.body that implement NodeWithModifiersModifier and TypeClassDescriptionclassAn annotation type declaration.@interface X { ... }classThe "int id();" in@interface X { int id(); }classCallableDeclaration<T extends CallableDeclaration<?>>Represents a declaration which is callable eg.classA definition of a class or interface.class X { ... }interface X { ... }classThe record declaration's constructorclassA constructor declaration:class X { X() { } }where X(){} is the constructor declaration.classThe declaration of an enum.enum X { ... }classThe declaration of a field in a class.classA method declaration.classThe parameters to a method or lambda.classThe 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 -
Uses of NodeWithModifiers in com.github.javaparser.ast.modules
Classes in com.github.javaparser.ast.modules that implement NodeWithModifiersModifier and TypeClassDescriptionclassA 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.modifiersModifier and TypeInterfaceDescriptioninterfaceNodeWithAbstractModifier<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.