我正在尝试使用ModelMapper将一种对象类型映射到另一种。
我在PropertyMap实现中定义了以下映射:
map().getExtended().setIncludeMaskType(MaskType.fromValue(source.getExtendedPollingType().getMaskSettings().getIncludeMask().getMaskType()));
问题是源类型方法调用
source.getExtendedPollingType().getMaskSettings().getIncludeMask().getMaskType()
目标类型接受
MaskType
枚举时返回String因此,我正在使用
MaskType.fromValue()
将String转换为枚举。问题在于
Caused by: java.lang.IllegalArgumentException
的失败值,因为这是源方法调用,在配置期间基本上返回null。那么我应该如何处理这个用例呢?
最佳答案
好的,似乎正确的方法是使用Converter:
using((MappingContext<String, MaskType> context) -> {
return MaskType.fromValue(context.getSource());
}).
map(source.getExtendedPollingType().getMaskSettings().getIncludeMask().getMaskType()).getExtended().setIncludeMaskType(null);
这在这里有更详细的解释:
https://github.com/modelmapper/modelmapper/issues/20
关于java - ModelMapper:如何处理枚举的空值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47714144/