Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedDeclaration
-
Packages that use ResolvedDeclaration Package Description com.github.javaparser.resolution.declarations com.github.javaparser.resolution.model 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 ResolvedDeclaration in com.github.javaparser.resolution.declarations
Subinterfaces of ResolvedDeclaration in com.github.javaparser.resolution.declarations Modifier and Type Interface Description interfaceResolvedAnnotationDeclarationinterfaceResolvedAnnotationMemberDeclarationinterfaceResolvedClassDeclarationDeclaration of a Class (not an interface or an enum).interfaceResolvedConstructorDeclarationA declaration of a constructor.interfaceResolvedEnumConstantDeclarationinterfaceResolvedEnumDeclarationDeclaration of an Enum.interfaceResolvedFieldDeclarationDeclaration of a field.interfaceResolvedInterfaceDeclarationAn interface declaration.interfaceResolvedMethodDeclarationA declaration of a method (either in an interface, a class, an enum or an annotation).interfaceResolvedMethodLikeDeclarationThis is a common interface for MethodDeclaration and ConstructorDeclaration.interfaceResolvedParameterDeclarationDeclaration of a parameter.interfaceResolvedRecordDeclarationDeclaration of a Record (not an interface or an enum).interfaceResolvedReferenceTypeDeclarationinterfaceResolvedTypeDeclarationA declaration of a type.interfaceResolvedTypeParameterDeclarationDeclaration of a type parameter.interfaceResolvedTypePatternDeclarationDeclaration of a type pattern expression.interfaceResolvedValueDeclarationDeclaration of a value. -
Uses of ResolvedDeclaration in com.github.javaparser.resolution.model
Classes in com.github.javaparser.resolution.model with type parameters of type ResolvedDeclaration Modifier and Type Class Description classSymbolReference<S extends ResolvedDeclaration>A reference to a symbol.Fields in com.github.javaparser.resolution.model declared as ResolvedDeclaration Modifier and Type Field Description private SSymbolReference. correspondingDeclarationMethods in com.github.javaparser.resolution.model with type parameters of type ResolvedDeclaration Modifier and Type Method Description static <I extends ResolvedDeclaration,O extends ResolvedDeclaration>
SymbolReference<O>SymbolReference. adapt(SymbolReference<I> ref, java.lang.Class<O> clazz)Adapt aSymbolReferenceinto anotherSymbolReference.static <I extends ResolvedDeclaration,O extends ResolvedDeclaration>
SymbolReference<O>SymbolReference. adapt(SymbolReference<I> ref, java.lang.Class<O> clazz)Adapt aSymbolReferenceinto anotherSymbolReference.static <S extends ResolvedDeclaration,S2 extends S>
SymbolReference<S>SymbolReference. solved(S2 symbolDeclaration)Create a solve reference to the given symbol.static <S extends ResolvedDeclaration>
SymbolReference<S>SymbolReference. unsolved()Create a reference for an unsolved symbol.static <S extends ResolvedDeclaration,S2 extends S>
SymbolReference<S>SymbolReference. unsolved(java.lang.Class<S2> clazz)Deprecated.Consider usingSymbolReference.unsolved()instead. -
Uses of ResolvedDeclaration in com.github.javaparser.symbolsolver
Classes in com.github.javaparser.symbolsolver that implement ResolvedDeclaration Modifier and Type Class Description private static classJavaSymbolSolver.ArrayLengthValueDeclaration -
Uses of ResolvedDeclaration in com.github.javaparser.symbolsolver.javaparsermodel.declarations
Classes in com.github.javaparser.symbolsolver.javaparsermodel.declarations that implement ResolvedDeclaration Modifier and Type Class Description classDefaultConstructorDeclaration<N extends ResolvedReferenceTypeDeclaration>This represents the default constructor added by the compiler for objects not declaring one.classJavaParserAnnotationDeclarationclassJavaParserAnnotationMemberDeclarationclassJavaParserAnonymousClassDeclarationAn anonymous class declaration representation.classJavaParserClassDeclarationclassJavaParserConstructorDeclaration<N extends ResolvedReferenceTypeDeclaration>classJavaParserEnumConstantDeclarationclassJavaParserEnumDeclarationstatic classJavaParserEnumDeclaration.ValueOfMethodNeeded by ContextHelper An implicitly declared methodpublic static E valueOf(String name), which returns the enum constant ofEwith the specified name.static classJavaParserEnumDeclaration.ValuesMethodNeeded 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.classJavaParserFieldDeclarationclassJavaParserInterfaceDeclarationclassJavaParserMethodDeclarationclassJavaParserParameterDeclarationclassJavaParserRecordDeclarationHeavily based on JavaParserClassDeclarationstatic classJavaParserRecordDeclaration.CanonicalRecordConstructorstatic classJavaParserRecordDeclaration.ImplicitGetterMethodclassJavaParserTypeParameterclassJavaParserTypePatternDeclarationWARNING: Implemented fairly blindly.classJavaParserTypeVariableDeclarationclassJavaParserVariableDeclaration -
Uses of ResolvedDeclaration in com.github.javaparser.symbolsolver.javassistmodel
Classes in com.github.javaparser.symbolsolver.javassistmodel that implement ResolvedDeclaration Modifier and Type Class Description classJavassistAnnotationDeclarationclassJavassistAnnotationMemberDeclarationclassJavassistClassDeclarationclassJavassistConstructorDeclarationclassJavassistEnumConstantDeclarationclassJavassistEnumDeclarationclassJavassistFieldDeclarationclassJavassistInterfaceDeclarationclassJavassistMethodDeclarationclassJavassistParameterDeclarationclassJavassistRecordDeclarationclassJavassistTypeParameter -
Uses of ResolvedDeclaration in com.github.javaparser.symbolsolver.logic
Classes in com.github.javaparser.symbolsolver.logic that implement ResolvedDeclaration Modifier and Type Class Description classAbstractClassDeclarationA common ancestor for all ClassDeclarations.classAbstractTypeDeclarationCommon ancestor for most types. -
Uses of ResolvedDeclaration in com.github.javaparser.symbolsolver.reflectionmodel
Classes in com.github.javaparser.symbolsolver.reflectionmodel that implement ResolvedDeclaration Modifier and Type Class Description classReflectionAnnotationDeclarationclassReflectionAnnotationMemberDeclarationclassReflectionClassDeclarationclassReflectionConstructorDeclarationclassReflectionEnumConstantDeclarationclassReflectionEnumDeclarationclassReflectionFieldDeclarationclassReflectionInterfaceDeclarationclassReflectionMethodDeclarationclassReflectionParameterDeclarationclassReflectionPatternDeclarationWARNING: Implemented fairly blindly.classReflectionRecordDeclarationclassReflectionTypeParameter
-