Uses of Class
org.mapstruct.ap.internal.model.MapperReference
-
Packages that use MapperReference Package Description org.mapstruct.ap.internal.model Meta-model of mapper types, their methods, mappings between properties etc. -
-
Uses of MapperReference in org.mapstruct.ap.internal.model
Subclasses of MapperReference in org.mapstruct.ap.internal.model Modifier and Type Class Description class
AnnotationMapperReference
Mapper reference which is retrieved via Annotation-based dependency injection.
The dependency injection may vary between field and constructor injection.class
DefaultMapperReference
Mapper reference which is retrieved via theMappers#getMapper()
method.Methods in org.mapstruct.ap.internal.model that return MapperReference Modifier and Type Method Description static MapperReference
MapperReference. findMapperReference(List<MapperReference> mapperReferences, SourceMethod method)
MapperReference
MethodReference. getDeclaringMapper()
Methods in org.mapstruct.ap.internal.model that return types with arguments of type MapperReference Modifier and Type Method Description List<MapperReference>
MappingBuilderContext. getMapperReferences()
Methods in org.mapstruct.ap.internal.model with parameters of type MapperReference Modifier and Type Method Description static MethodReference
MethodReference. forMapperReference(Method method, MapperReference declaringMapper, List<ParameterBinding> parameterBindings)
static LifecycleCallbackMethodReference
LifecycleCallbackMethodReference. forMethodReference(SelectedMethod<SourceMethod> lifecycleMethod, MapperReference mapperReference, Method containingMethod, Set<String> existingVariableNames)
Method parameters in org.mapstruct.ap.internal.model with type arguments of type MapperReference Modifier and Type Method Description static MapperReference
MapperReference. findMapperReference(List<MapperReference> mapperReferences, SourceMethod method)
Constructors in org.mapstruct.ap.internal.model with parameters of type MapperReference Constructor Description MethodReference(Method method, MapperReference declaringMapper, Parameter providingParameter, List<ParameterBinding> parameterBindings)
Creates a new reference to the given method.
-