Uses of Class
org.mapstruct.ap.internal.model.ForgedMethod
-
Packages that use ForgedMethod Package Description org.mapstruct.ap.internal.model Meta-model of mapper types, their methods, mappings between properties etc. -
-
Uses of ForgedMethod in org.mapstruct.ap.internal.model
Methods in org.mapstruct.ap.internal.model that return ForgedMethod Modifier and Type Method Description static ForgedMethod
ForgedMethod. forElementMapping(String name, Type sourceType, Type returnType, Method basedOn, ForgedMethodHistory history, boolean forgedNameBased)
Creates a new forged method for mapping a collection element, map key/value or stream elementstatic ForgedMethod
ForgedMethod. forParameterMapping(String name, Type sourceType, Type returnType, Method basedOn)
Creates a new forged method with the given name for mapping a method parameter to a property.static ForgedMethod
ForgedMethod. forPropertyMapping(String name, Type sourceType, Type returnType, List<Parameter> parameters, Method basedOn, ForgedMethodHistory history, MappingReferences mappingReferences, boolean forgedNameBased)
Creates a new forged method for mapping a bean property to a propertystatic ForgedMethod
ForgedMethod. forSubclassMapping(String name, Type sourceType, Type returnType, Method basedOn, MappingReferences mappingReferences, ForgedMethodHistory history, boolean forgedNameBased)
Creates a new forged method for mapping a SubclassMapping elementMethods in org.mapstruct.ap.internal.model that return types with arguments of type ForgedMethod Modifier and Type Method Description Map<ForgedMethod,ForgedMethod>
MappingBuilderContext. getForgedMethodsUnderCreation()
Returns a map which is used to track which forged methods are under creation.Map<ForgedMethod,ForgedMethod>
MappingBuilderContext. getForgedMethodsUnderCreation()
Returns a map which is used to track which forged methods are under creation.Methods in org.mapstruct.ap.internal.model with parameters of type ForgedMethod Modifier and Type Method Description BeanMappingMethod.Builder
BeanMappingMethod.Builder. forgedMethod(ForgedMethod forgedMethod)
NestedPropertyMappingMethod.Builder
NestedPropertyMappingMethod.Builder. method(ForgedMethod sourceMethod)
Constructors in org.mapstruct.ap.internal.model with parameters of type ForgedMethod Constructor Description ForgedMethod(String name, ForgedMethod forgedMethod)
creates a new ForgedMethod with the same arguments but with a new name
-