org.modelmapper.ModelMapper.createTypeMap()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(121)

本文整理了Java中org.modelmapper.ModelMapper.createTypeMap()方法的一些代码示例,展示了ModelMapper.createTypeMap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ModelMapper.createTypeMap()方法的具体详情如下:
包路径:org.modelmapper.ModelMapper
类名称:ModelMapper
方法名:createTypeMap

ModelMapper.createTypeMap介绍

[英]Creates a TypeMap for the sourceType and destinationType using the ModelMapper's configuration.
[中]使用ModelMapper的配置为sourceType和destinationType创建类型映射。

代码示例

代码示例来源:origin: bramp/ffmpeg-cli-wrapper

  1. private static <S, D> TypeMap<S, D> createTypeMap(
  2. ModelMapper mapper, Class<S> sourceType, Class<D> destinationType, Configuration config) {
  3. return mapper
  4. .createTypeMap(sourceType, destinationType, config)
  5. // We setPropertyCondition because ModelMapper seems to ignore this in
  6. // the config
  7. .setPropertyCondition(config.getPropertyCondition());
  8. }

代码示例来源:origin: org.modelmapper/modelmapper

  1. /**
  2. * Creates a TypeMap for the {@code source}'s type and {@code destinationType} using the
  3. * ModelMapper's configuration. Useful for creating TypeMaps for generic source data structures.
  4. *
  5. * @param <S> source type
  6. * @param <D> destination type
  7. * @param source
  8. * @param destinationType
  9. * @throws IllegalArgumentException if {@code source} or {@code destinationType} are null
  10. * @throws IllegalStateException if a TypeMap already exists for {@code source}'s type and
  11. * {@code destinationType}
  12. * @throws ConfigurationException if the ModelMapper cannot create the TypeMap
  13. * @see #getTypeMap(Class, Class)
  14. */
  15. public <S, D> TypeMap<S, D> createTypeMap(S source, Class<D> destinationType) {
  16. return this.<S, D>createTypeMap(source, destinationType, config);
  17. }

代码示例来源:origin: org.modelmapper/modelmapper

  1. /**
  2. * Creates a TypeMap for the {@code sourceType} and {@code destinationType} using the
  3. * ModelMapper's configuration.
  4. *
  5. * @param <S> source type
  6. * @param <D> destination type
  7. * @param sourceType
  8. * @param destinationType
  9. * @throws IllegalArgumentException if {@code sourceType} or {@code destinationType} are null
  10. * @throws IllegalStateException if a TypeMap already exists for {@code sourceType} and
  11. * {@code destinationType}
  12. * @throws ConfigurationException if the ModelMapper cannot create the TypeMap
  13. * @see #getTypeMap(Class, Class)
  14. */
  15. public <S, D> TypeMap<S, D> createTypeMap(Class<S> sourceType, Class<D> destinationType) {
  16. return this.<S, D>createTypeMap(sourceType, destinationType, config);
  17. }

代码示例来源:origin: org.modelmapper/modelmapper

  1. /**
  2. * Creates a TypeMap for the {@code source}'s type and {@code destinationType} identified by the
  3. * {@code typeMapName} using the ModelMapper's configuration. Useful for creating TypeMaps for
  4. * generic source data structures.
  5. *
  6. * @param <S> source type
  7. * @param <D> destination type
  8. * @param source
  9. * @param destinationType
  10. * @param typeMapName
  11. * @throws IllegalArgumentException if {@code source}, {@code destinationType} or
  12. * {@code typeMapName} are null
  13. * @throws IllegalStateException if a TypeMap already exists for {@code source}'s type,
  14. * {@code destinationType} and {@code typeMapName}
  15. * @throws ConfigurationException if the ModelMapper cannot create the TypeMap
  16. * @see #getTypeMap(Class, Class, String)
  17. */
  18. public <S, D> TypeMap<S, D> createTypeMap(S source, Class<D> destinationType, String typeMapName) {
  19. return this.<S, D>createTypeMap(source, destinationType, typeMapName, config);
  20. }

代码示例来源:origin: org.modelmapper/modelmapper

  1. /**
  2. * Creates a TypeMap for the {@code sourceType} and {@code destinationType} identified by the
  3. * {@code typeMapName} using the ModelMapper's configuration.
  4. *
  5. * @param <S> source type
  6. * @param <D> destination type
  7. * @param sourceType
  8. * @param destinationType
  9. * @param typeMapName
  10. * @throws IllegalArgumentException if {@code sourceType}, {@code destinationType} or
  11. * {@code typeMapName} are null
  12. * @throws IllegalStateException if a TypeMap already exists for {@code sourceType},
  13. * {@code destinationType} and {@code typeMapName}
  14. * @throws ConfigurationException if the ModelMapper cannot create the TypeMap
  15. * @see #getTypeMap(Class, Class, String)
  16. */
  17. public <S, D> TypeMap<S, D> createTypeMap(Class<S> sourceType, Class<D> destinationType,
  18. String typeMapName) {
  19. return this.<S, D>createTypeMap(sourceType, destinationType, typeMapName, config);
  20. }

代码示例来源:origin: stackoverflow.com

  1. ModelMapper modelMapper = new ModelMapper();
  2. List<Mapping> mappings = modelMapper.createTypeMap(Source.class, Dest.class).getMappings();

代码示例来源:origin: stackoverflow.com

  1. ModelMapper modelMapper = new ModelMapper();
  2. List<Mappings> mappings = modelMapper.createTypeMap(A.class, B.class).getMappings();

代码示例来源:origin: stackoverflow.com

  1. mapper.createTypeMap(RecipeBO.class, Recipe.class).setConverter(converter);

代码示例来源:origin: stackoverflow.com

  1. this.map().setId(this.source.getId());
  2. this.map().setName(this.source.getName());
  3. mapper.createTypeMap(TypeEnum.class, TypeClass.class).setConverter(
  4. new Converter<TypeEnum, TypeClass>() {
  5. @Override

相关文章