Uses of Interface
com.github.javaparser.resolution.declarations.ResolvedFieldDeclaration
Packages that use ResolvedFieldDeclaration
Package
Description
-
Uses of ResolvedFieldDeclaration in com.github.javaparser.ast.body
Methods in com.github.javaparser.ast.body that return ResolvedFieldDeclaration -
Uses of ResolvedFieldDeclaration in com.github.javaparser.resolution.declarations
Methods in com.github.javaparser.resolution.declarations that return ResolvedFieldDeclarationModifier and TypeMethodDescriptiondefault ResolvedFieldDeclaration
ResolvedDeclaration.asField()
Return this as a FieldDeclaration or throw an UnsupportedOperationExceptiondefault ResolvedFieldDeclaration
ResolvedFieldDeclaration.asField()
default ResolvedFieldDeclaration
Note that the type of the field should be expressed using the type variables of this particular type.default ResolvedFieldDeclaration
ResolvedReferenceTypeDeclaration.getVisibleField(String name)
Consider only field or inherited field which is not private.Methods in com.github.javaparser.resolution.declarations that return types with arguments of type ResolvedFieldDeclarationModifier and TypeMethodDescriptionResolvedReferenceTypeDeclaration.getAllFields()
Return a list of all fields, either declared in this declaration or inherited.default List<ResolvedFieldDeclaration>
ResolvedReferenceTypeDeclaration.getAllNonStaticFields()
Return a list of all the non static fields, either declared or inherited.default List<ResolvedFieldDeclaration>
ResolvedReferenceTypeDeclaration.getAllStaticFields()
Return a list of all the static fields, either declared or inherited.default List<ResolvedFieldDeclaration>
ResolvedReferenceTypeDeclaration.getDeclaredFields()
Return a list of all the fields declared in this type.default List<ResolvedFieldDeclaration>
ResolvedReferenceTypeDeclaration.getVisibleFields()
Return a list of all fields declared and the inherited ones which are not private. -
Uses of ResolvedFieldDeclaration in com.github.javaparser.resolution.types
Methods in com.github.javaparser.resolution.types that return types with arguments of type ResolvedFieldDeclarationModifier and TypeMethodDescriptionResolvedReferenceType.getAllFieldsVisibleToInheritors()
Fields which are visible to inheritors.abstract Set<ResolvedFieldDeclaration>
ResolvedReferenceType.getDeclaredFields()
Fields declared on this type.