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.org.mapstruct.ap.internal.processor Contains model processors which perform tasks such as retrieving mapping methods, creating a model representation and writing the model into Java source files. -
-
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 classAbstractMappingMethodBuilder<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 classBeanMappingMethodAMappingMethodimplemented by aMapperclass which maps one bean type to another, optionally configured by one or morePropertyMappings.classContainerMappingMethodAMappingMethodimplemented by aMapperclass which does mapping of generic types.classDelegatingMethodA method of a decorator which delegates to the corresponding method of the generated mapper implementation.classIterableMappingMethodAMappingMethodimplemented by aMapperclass which maps one iterable type to another.classMapMappingMethodclassNestedPropertyMappingMethodThis 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.classNormalTypeMappingMethodAMappingMethodthat is used by the main mapping methods (BeanMappingMethod,MapMappingMethod,IterableMappingMethodandStreamMappingMethod(non-enum / non-value mapping)classStreamMappingMethodAMappingMethodimplemented by aMapperclass which maps one iterable or array type to Stream.classSupportingMappingMethodA 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.classValueMappingMethodAValueMappingMethodwhich maps one value type to another, optionally configured by one or moreValueMappingOptionss.Fields in org.mapstruct.ap.internal.model with type parameters of type MappingMethod Modifier and Type Field Description private java.util.List<MappingMethod>MappingBuilderContext. mappingsToGenerateprotected java.util.List<MappingMethod>GeneratedType.GeneratedTypeBuilder. methodsprivate java.util.List<MappingMethod>GeneratedType. methodsMethods in org.mapstruct.ap.internal.model that return MappingMethod Modifier and Type Method Description MappingMethodMappingBuilderContext. getExistingMappingMethod(MappingMethod newMappingMethod)Methods in org.mapstruct.ap.internal.model that return types with arguments of type MappingMethod Modifier and Type Method Description java.util.List<MappingMethod>MappingBuilderContext. getMappingsToGenerate()java.util.List<MappingMethod>GeneratedType. getMethods()Methods in org.mapstruct.ap.internal.model with parameters of type MappingMethod Modifier and Type Method Description (package private) AssignmentAbstractBaseBuilder. createForgedAssignment(SourceRHS source, ForgedMethod methodRef, MappingMethod mappingMethod)MappingMethodMappingBuilderContext. getExistingMappingMethod(MappingMethod newMappingMethod)Method parameters in org.mapstruct.ap.internal.model with type arguments of type MappingMethod Modifier and Type Method Description TGeneratedType.GeneratedTypeBuilder. methods(java.util.List<MappingMethod> methods)Constructor parameters in org.mapstruct.ap.internal.model with type arguments of type MappingMethod Constructor Description Decorator(TypeFactory typeFactory, java.lang.String packageName, java.lang.String name, Type decoratorType, Type mapperType, java.util.List<MappingMethod> methods, Options options, VersionInformation versionInformation, boolean suppressGeneratorTimestamp, Accessibility accessibility, java.util.SortedSet<Type> extraImports, DecoratorConstructor decoratorConstructor)GeneratedType(TypeFactory typeFactory, java.lang.String packageName, java.lang.String name, Type mapperDefinitionType, java.util.List<MappingMethod> methods, java.util.List<Field> fields, Options options, VersionInformation versionInformation, boolean suppressGeneratorTimestamp, Accessibility accessibility, java.util.SortedSet<Type> extraImportedTypes, Constructor constructor)Mapper(TypeFactory typeFactory, java.lang.String packageName, java.lang.String name, Type mapperDefinitionType, boolean customPackage, boolean customImplName, java.util.List<MappingMethod> methods, Options options, VersionInformation versionInformation, boolean suppressGeneratorTimestamp, Accessibility accessibility, java.util.List<Field> fields, Constructor constructor, Decorator decorator, java.util.SortedSet<Type> extraImportedTypes) -
Uses of MappingMethod in org.mapstruct.ap.internal.processor
Methods in org.mapstruct.ap.internal.processor that return types with arguments of type MappingMethod Modifier and Type Method Description private java.util.List<MappingMethod>MapperCreationProcessor. getMappingMethods(MapperOptions mapperAnnotation, java.util.List<SourceMethod> methods)
-