I don't think there is one directly.
enums were new with java1.5, and I don't think it has quite caught up.
However JSTL also doesn't deal with constants very well.
Probably your best bet would be to use the EnumMap and EnumSet classes to expose a set/map of the enum onto the page.
JSTL could at least deal with those.
What exactly are you trying to accomplish with the enum on the JSP page?
I want to be able to compare strings on JSP pages with the string values of enums
e.g.
<c:if test=${stringValue eq enum.toString } />
or something similar to that. I want to avoid using magic strings on the JSP page.
Is this possible?