Uses of Class
org.mapstruct.ap.internal.model.MethodReference
-
Packages that use MethodReference Package Description org.mapstruct.ap.internal.model Meta-model of mapper types, their methods, mappings between properties etc. -
-
Uses of MethodReference in org.mapstruct.ap.internal.model
Subclasses of MethodReference in org.mapstruct.ap.internal.model Modifier and Type Class Description class
LifecycleCallbackMethodReference
Represents a reference to a method that is annotated with@BeforeMapping
or@AfterMapping
.Fields in org.mapstruct.ap.internal.model declared as MethodReference Modifier and Type Field Description protected MethodReference
MethodReferencePresenceCheck. methodReference
Methods in org.mapstruct.ap.internal.model that return MethodReference Modifier and Type Method Description static MethodReference
MethodReference. forBuiltInMethod(BuiltInMethod method, ConversionContext contextParam)
static MethodReference
MethodReference. forConstructorInvocation(Type type, List<ParameterBinding> parameterBindings)
static MethodReference
MethodReference. forForgedMethod(Method method, List<ParameterBinding> parameterBindings)
static MethodReference
MethodReference. forMapperReference(Method method, MapperReference declaringMapper, List<ParameterBinding> parameterBindings)
static MethodReference
MethodReference. forMethodCall(String methodName)
static MethodReference
MethodReference. forMethodChaining(MethodReference... references)
static MethodReference
MethodReference. forParameterProvidedMethod(Method method, Parameter providingParameter, List<ParameterBinding> parameterBindings)
static MethodReference
MethodReference. forStaticBuilder(String builderCreationMethod, Type definingType)
static MethodReference
ObjectFactoryMethodResolver. getBuilderFactoryMethod(Type typeToBuild, BuilderType builder)
static MethodReference
ObjectFactoryMethodResolver. getBuilderFactoryMethod(Method method, BuilderType builder)
static MethodReference
BuilderFinisherMethodResolver. getBuilderFinisherMethod(Method method, BuilderType builderType, MappingBuilderContext ctx)
MethodReference
IterableCreation. getFactoryMethod()
MethodReference
NormalTypeMappingMethod. getFactoryMethod()
static MethodReference
ObjectFactoryMethodResolver. getFactoryMethod(Method method, Type alternativeTarget, SelectionParameters selectionParameters, MappingBuilderContext ctx)
returns a no arg factory methodstatic MethodReference
ObjectFactoryMethodResolver. getFactoryMethod(Method method, SelectionParameters selectionParameters, MappingBuilderContext ctx)
returns a no arg factory methodstatic MethodReference
ObjectFactoryMethodResolver. getFactoryMethodReference(Method method, SelectedMethod<SourceMethod> matchingFactoryMethod, MappingBuilderContext ctx)
MethodReference
BeanMappingMethod. getFinalizerMethod()
MethodReference
MethodReferencePresenceCheck. getMethodReference()
Methods in org.mapstruct.ap.internal.model that return types with arguments of type MethodReference Modifier and Type Method Description List<MethodReference>
MethodReference. getMethodsToChain()
Methods in org.mapstruct.ap.internal.model with parameters of type MethodReference Modifier and Type Method Description static MethodReference
MethodReference. forMethodChaining(MethodReference... references)
protected abstract M
ContainerMappingMethodBuilder. instantiateMappingMethod(Method method, Collection<String> existingVariables, Assignment assignment, MethodReference factoryMethod, boolean mapNullToDefault, String loopVariableName, List<LifecycleCallbackMethodReference> beforeMappingMethods, List<LifecycleCallbackMethodReference> afterMappingMethods, SelectionParameters selectionParameters)
protected IterableMappingMethod
IterableMappingMethod.Builder. instantiateMappingMethod(Method method, Collection<String> existingVariables, Assignment assignment, MethodReference factoryMethod, boolean mapNullToDefault, String loopVariableName, List<LifecycleCallbackMethodReference> beforeMappingMethods, List<LifecycleCallbackMethodReference> afterMappingMethods, SelectionParameters selectionParameters)
protected StreamMappingMethod
StreamMappingMethod.Builder. instantiateMappingMethod(Method method, Collection<String> existingVariables, Assignment assignment, MethodReference factoryMethod, boolean mapNullToDefault, String loopVariableName, List<LifecycleCallbackMethodReference> beforeMappingMethods, List<LifecycleCallbackMethodReference> afterMappingMethods, SelectionParameters selectionParameters)
Constructors in org.mapstruct.ap.internal.model with parameters of type MethodReference Constructor Description MethodReferencePresenceCheck(MethodReference methodReference)
MethodReferencePresenceCheck(MethodReference methodReference, boolean negate)
-