Java 比较 SpEL 中的枚举
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/21806298/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Compare Enums in SpEL
提问by Harold L. Brown
At Spring's @Cacheable
annotation I want to specify an unless
condition.
在 Spring 的@Cacheable
注释中,我想指定一个unless
条件。
However my return value is neither a primitive type nor a Java bean, but an Enum.
但是我的返回值既不是原始类型也不是 Java bean,而是一个 Enum。
How can I compare for equality with another Enum in SpEL (Spring Expression Language)?
如何与 SpEL ( Spring Expression Language) 中的另一个 Enum 进行相等性比较?
采纳答案by Harold L. Brown
#result == T(fully.qualified.path.to.AnEnum).A_VALUE
回答by sorrymissHymanson
#object.someEnumProperty.name() == 'CERTAIN_VALUE'
#object.someEnumProperty.name() == 'CERTAIN_VALUE'
would work as well.
也会起作用。