Uses of Class
org.mapstruct.ap.internal.model.MappingMethod
-
Packages that use MappingMethod Package Description org.mapstruct.ap.internal.model Meta-model of mapper types, their methods, mappings between properties etc. -
-
Uses of MappingMethod in org.mapstruct.ap.internal.model
Classes in org.mapstruct.ap.internal.model with type parameters of type MappingMethod Modifier and Type Class Description class
AbstractMappingMethodBuilder<B extends AbstractMappingMethodBuilder<B,M>,M extends MappingMethod>
An abstract builder that can be reused for buildingMappingMethod
(s).Subclasses of MappingMethod in org.mapstruct.ap.internal.model Modifier and Type Class Description class
BeanMappingMethod
AMappingMethod
implemented by aMapper
class which maps one bean type to another, optionally configured by one or morePropertyMapping
s.class
ContainerMappingMethod
AMappingMethod
implemented by aMapper
class which does mapping of generic types.class
DelegatingMethod
A method of a decorator which delegates to the corresponding method of the generated mapper implementation.class
IterableMappingMethod
AMappingMethod
implemented by aMapper
class which maps one iterable type to another.class
MapMappingMethod
class
NestedPropertyMappingMethod
This method is used to convert the nested properties as listed in propertyEntries into a method that creates a mapping from the start of this list to the end of the list.class
NormalTypeMappingMethod
AMappingMethod
that is used by the main mapping methods (BeanMappingMethod
,MapMappingMethod
,IterableMappingMethod
andStreamMappingMethod
(non-enum / non-value mapping)class
StreamMappingMethod
AMappingMethod
implemented by aMapper
class which maps one iterable or array type to Stream.class
SupportingMappingMethod
A mapping method which is not based on an actual method declared in the original mapper interface but is added as private method to map a certain source/target type combination.class
ValueMappingMethod
AValueMappingMethod
which maps one value type to another, optionally configured by one or moreValueMappingOptions
s.Fields in org.mapstruct.ap.internal.model with type parameters of type MappingMethod Modifier and Type Field Description protected List<MappingMethod>
GeneratedType.GeneratedTypeBuilder. methods
Methods in org.mapstruct.ap.internal.model that return MappingMethod Modifier and Type Method Description MappingMethod
MappingBuilderContext. getExistingMappingMethod(MappingMethod newMappingMethod)
Methods in org.mapstruct.ap.internal.model that return types with arguments of type MappingMethod Modifier and Type Method Description List<MappingMethod>
MappingBuilderContext. getMappingsToGenerate()
Methods in org.mapstruct.ap.internal.model with parameters of type MappingMethod Modifier and Type Method Description MappingMethod
MappingBuilderContext. getExistingMappingMethod(MappingMethod newMappingMethod)
Method parameters in org.mapstruct.ap.internal.model with type arguments of type MappingMethod Modifier and Type Method Description T
GeneratedType.GeneratedTypeBuilder. methods(List<MappingMethod> methods)
Constructor parameters in org.mapstruct.ap.internal.model with type arguments of type MappingMethod Constructor Description GeneratedType(TypeFactory typeFactory, String packageName, String name, Type mapperDefinitionType, List<MappingMethod> methods, List<Field> fields, Options options, VersionInformation versionInformation, boolean suppressGeneratorTimestamp, Accessibility accessibility, SortedSet<Type> extraImportedTypes, Constructor constructor)
-