开发者

How to testing for enum equality in JSF?

开发者 https://www.devze.com 2022-12-24 01:48 出处:网络
Is it possible to test for enum equality in JSF? E.g. where stuff is an enum Stuff: <h:开发者_Python百科outputText value=\"text\" rendered=\"#{mrBean.stuff == mrsBean.stuff}\"/>

Is it possible to test for enum equality in JSF?

E.g. where stuff is an enum Stuff:

<h:开发者_Python百科outputText value="text" rendered="#{mrBean.stuff == mrsBean.stuff}"/>


This is actually more EL related than Faces related. The construct as you posted is valid, but you should keep in mind that enum values are in EL 2.1 or older actually evaluated as String values. If String.valueOf(mrBean.getStuff()) equals String.valueOf(mrsBean.getStuff()), then your code example will render. In EL 2.2 or newer the same construct will work, but they are evaluated as true enums.

Note that it indeed requires a getter method to return the enum value. Given the fact that enums are treated as String, you can in essence also just do:

<h:outputText value="text" rendered="#{mrBean.stuff == 'FOO'}" />

In EL, you cannot access enum values directly like this:

<h:outputText value="text" rendered="#{mrBean.stuff == Stuff.FOO}" />

This is only possible when you use Faces 2.3-introduced <f:importConstants> tag:

<f:metadata>
    <f:importConstants type="com.example.Stuff" />
</f:metadata>
...
<h:outputText value="text" rendered="#{mrBean.stuff == Stuff.FOO}" />

Or when you're not on Faces 2.3 yet or when you don't want to use <f:metadata>, use the OmniFaces predecesor <o:importConstants>:

<o:importConstants type="com.example.Stuff" />
...
<h:outputText value="text" rendered="#{mrBean.stuff == Stuff.FOO}" />


If you have the enum

public enum Status {
    YES, NO
}

you can reference the enums in your jsf pages like so:

<h:outputText value="text" rendered="#{myBean.status == 'YES'}"/>

I'm not so sure about the String evaluation, due to something I stumbled upon while refactoring some code to use enums: if you have a typo in your status String, ie:

<h:outputText value="text" rendered="#{myBean.status == 'YESSIR'}"/>

you will actually get a runtime error when you hit the page because the EL parser will try to coerce 'YESSIR' into a Status enum and fail.


You could define testing methods on the enum, see the following source.

Enum definition:

public enum MyEnum {
    FOO;
    public boolean isFoo(){
        return FOO.equals(this);
    }
}

JSF code:

<h:outputText value="text" rendered="#{mrBean.stuff ne null and mrBean.stuff.foo}"/>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号