作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 ModelMapper 将一种对象类型映射到另一种对象类型。我在 PropertyMap 实现中定义了以下映射:
map().getExtended().setIncludeMaskType(MaskType.fromValue(source.getExtendedPollingType().getMaskSettings().getIncludeMask().getMaskType()));
问题是源类型方法调用source.getExtendedPollingType().getMaskSettings().getIncludeMask().getMaskType()
返回 String,而目标类型接受 MaskType
枚举
因此,我使用 MaskType.fromValue()
将字符串转换为枚举。问题是 value 失败,Caused by: java.lang.IllegalArgumentException
,因为这是源方法调用,在配置期间基本上返回 null。
那么我应该如何处理这个用例?
最佳答案
好吧,正确的方法似乎是使用转换器:
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/
我是一名优秀的程序员,十分优秀!