Uses of Interface
com.github.javaparser.resolution.declarations.AssociableToAST
-
Packages that use AssociableToAST Package Description com.github.javaparser.resolution.declarations com.github.javaparser.symbolsolver com.github.javaparser.symbolsolver.javaparsermodel.declarations com.github.javaparser.symbolsolver.javassistmodel Implementation of model based on Javassist.com.github.javaparser.symbolsolver.logic com.github.javaparser.symbolsolver.reflectionmodel Implementation of model based on reflection. -
-
Uses of AssociableToAST in com.github.javaparser.resolution.declarations
Subinterfaces of AssociableToAST in com.github.javaparser.resolution.declarations Modifier and Type Interface Description interface
ResolvedAnnotationDeclaration
interface
ResolvedAnnotationMemberDeclaration
interface
ResolvedClassDeclaration
Declaration of a Class (not an interface or an enum).interface
ResolvedConstructorDeclaration
A declaration of a constructor.interface
ResolvedDeclaration
A generic declaration.interface
ResolvedEnumConstantDeclaration
interface
ResolvedEnumDeclaration
Declaration of an Enum.interface
ResolvedFieldDeclaration
Declaration of a field.interface
ResolvedInterfaceDeclaration
An interface declaration.interface
ResolvedMethodDeclaration
A declaration of a method (either in an interface, a class, an enum or an annotation).interface
ResolvedMethodLikeDeclaration
This is a common interface for MethodDeclaration and ConstructorDeclaration.interface
ResolvedParameterDeclaration
Declaration of a parameter.interface
ResolvedRecordDeclaration
Declaration of a Record (not an interface or an enum).interface
ResolvedReferenceTypeDeclaration
interface
ResolvedTypeDeclaration
A declaration of a type.interface
ResolvedTypeParameterDeclaration
Declaration of a type parameter.interface
ResolvedTypePatternDeclaration
Declaration of a type pattern expression.interface
ResolvedValueDeclaration
Declaration of a value. -
Uses of AssociableToAST in com.github.javaparser.symbolsolver
Classes in com.github.javaparser.symbolsolver that implement AssociableToAST Modifier and Type Class Description private static class
JavaSymbolSolver.ArrayLengthValueDeclaration
-
Uses of AssociableToAST in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Classes in com.github.javaparser.symbolsolver.javaparsermodel.declarations that implement AssociableToAST Modifier and Type Class Description class
DefaultConstructorDeclaration<N extends ResolvedReferenceTypeDeclaration>
This represents the default constructor added by the compiler for objects not declaring one.class
JavaParserAnnotationDeclaration
class
JavaParserAnnotationMemberDeclaration
class
JavaParserAnonymousClassDeclaration
An anonymous class declaration representation.class
JavaParserClassDeclaration
class
JavaParserConstructorDeclaration<N extends ResolvedReferenceTypeDeclaration>
class
JavaParserEnumConstantDeclaration
class
JavaParserEnumDeclaration
static class
JavaParserEnumDeclaration.ValueOfMethod
Needed by ContextHelper An implicitly declared methodpublic static E valueOf(String name)
, which returns the enum constant ofE
with the specified name.static class
JavaParserEnumDeclaration.ValuesMethod
Needed by ContextHelper An implicitly declared methodpublic static E[] values()
, which returns an array containing the enum constants ofE
, in the same order as they appear in the body of the declaration of E.class
JavaParserFieldDeclaration
class
JavaParserInterfaceDeclaration
class
JavaParserMethodDeclaration
class
JavaParserParameterDeclaration
class
JavaParserRecordDeclaration
Heavily based on JavaParserClassDeclarationstatic class
JavaParserRecordDeclaration.CanonicalRecordConstructor
static class
JavaParserRecordDeclaration.ImplicitGetterMethod
class
JavaParserTypeParameter
class
JavaParserTypePatternDeclaration
WARNING: Implemented fairly blindly.class
JavaParserTypeVariableDeclaration
class
JavaParserVariableDeclaration
-
Uses of AssociableToAST in com.github.javaparser.symbolsolver.javassistmodel
Classes in com.github.javaparser.symbolsolver.javassistmodel that implement AssociableToAST Modifier and Type Class Description class
JavassistAnnotationDeclaration
class
JavassistAnnotationMemberDeclaration
class
JavassistClassDeclaration
class
JavassistConstructorDeclaration
class
JavassistEnumConstantDeclaration
class
JavassistEnumDeclaration
class
JavassistFieldDeclaration
class
JavassistInterfaceDeclaration
class
JavassistMethodDeclaration
class
JavassistParameterDeclaration
class
JavassistRecordDeclaration
class
JavassistTypeParameter
-
Uses of AssociableToAST in com.github.javaparser.symbolsolver.logic
Classes in com.github.javaparser.symbolsolver.logic that implement AssociableToAST Modifier and Type Class Description class
AbstractClassDeclaration
A common ancestor for all ClassDeclarations.class
AbstractTypeDeclaration
Common ancestor for most types. -
Uses of AssociableToAST in com.github.javaparser.symbolsolver.reflectionmodel
Classes in com.github.javaparser.symbolsolver.reflectionmodel that implement AssociableToAST Modifier and Type Class Description class
ReflectionAnnotationDeclaration
class
ReflectionAnnotationMemberDeclaration
class
ReflectionClassDeclaration
class
ReflectionConstructorDeclaration
class
ReflectionEnumConstantDeclaration
class
ReflectionEnumDeclaration
class
ReflectionFieldDeclaration
class
ReflectionInterfaceDeclaration
class
ReflectionMethodDeclaration
class
ReflectionParameterDeclaration
class
ReflectionPatternDeclaration
WARNING: Implemented fairly blindly.class
ReflectionRecordDeclaration
class
ReflectionTypeParameter
-