Is it possible to test for enum equality in JSF?
E.g. where stuff is an enum Stuff:
<h:outputText value="text" rendered="#{mrBean.stuff == mrsBean.stuff}"/>
|
|
|
This is actually more EL related than JSF related. The construct as you posted is valid, but you should keep in mind that enum values are actually evaluated as If
You can only not access enum values directly in standard EL. So the following ain't going to work:
with
|
||||
|
|
If you have the enum
you can reference the enums in your jsf pages like so:
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:
you will actually get a runtime error when you hit the page because the EL parser will try to coerce 'YESSIR' into a |
|||
|
|