Uses of Class
org.mapstruct.ap.internal.model.common.ParameterBinding
-
Packages that use ParameterBinding Package Description org.mapstruct.ap.internal.model Meta-model of mapper types, their methods, mappings between properties etc.org.mapstruct.ap.internal.model.common Contains types which are shared between the intermediary mapping method model ("source model") and the mapper model.org.mapstruct.ap.internal.model.source.selector Provides strategies for selecting a matching mapping or factory method when mapping from one attribute to another or instantiating the target type of a mapping method, respectively. -
-
Uses of ParameterBinding in org.mapstruct.ap.internal.model
Methods in org.mapstruct.ap.internal.model that return types with arguments of type ParameterBinding Modifier and Type Method Description List<ParameterBinding>
MethodReference. getParameterBindings()
Method parameters in org.mapstruct.ap.internal.model with type arguments of type ParameterBinding Modifier and Type Method Description 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. forParameterProvidedMethod(Method method, Parameter providingParameter, List<ParameterBinding> parameterBindings)
Constructor parameters in org.mapstruct.ap.internal.model with type arguments of type ParameterBinding Constructor Description MethodReference(Method method, MapperReference declaringMapper, Parameter providingParameter, List<ParameterBinding> parameterBindings)
Creates a new reference to the given method. -
Uses of ParameterBinding in org.mapstruct.ap.internal.model.common
Methods in org.mapstruct.ap.internal.model.common that return ParameterBinding Modifier and Type Method Description static ParameterBinding
ParameterBinding. forMappingTargetBinding(Type resultType)
static ParameterBinding
ParameterBinding. forSourcePropertyNameBinding(Type classTypeOf)
static ParameterBinding
ParameterBinding. forSourceTypeBinding(Type sourceType)
static ParameterBinding
ParameterBinding. forTargetPropertyNameBinding(Type classTypeOf)
static ParameterBinding
ParameterBinding. forTargetTypeBinding(Type classTypeOf)
static ParameterBinding
ParameterBinding. fromParameter(Parameter parameter)
static ParameterBinding
ParameterBinding. fromSourceRHS(SourceRHS sourceRHS)
static ParameterBinding
ParameterBinding. fromTypeAndName(Type parameterType, String parameterName)
Methods in org.mapstruct.ap.internal.model.common that return types with arguments of type ParameterBinding Modifier and Type Method Description static List<ParameterBinding>
ParameterBinding. fromParameters(List<Parameter> parameters)
-
Uses of ParameterBinding in org.mapstruct.ap.internal.model.source.selector
Methods in org.mapstruct.ap.internal.model.source.selector that return types with arguments of type ParameterBinding Modifier and Type Method Description List<ParameterBinding>
SelectionContext. getAvailableParameterBindings()
List<ParameterBinding>
SelectedMethod. getParameterBindings()
Method parameters in org.mapstruct.ap.internal.model.source.selector with type arguments of type ParameterBinding Modifier and Type Method Description void
SelectedMethod. setParameterBindings(List<ParameterBinding> parameterBindings)
-