vote up 1 vote down star

Hi,

I have an Enum like this

package com.example;

public enum CoverageEnum {

    COUNTRY,
    REGIONAL,
    COUNTY
}

I would like to iterate over these constants in JSP without using scriptlet code. I know I can do it with scriptlet code like this:

<c:forEach var="type" items="<%= com.example.CoverageEnum.values() %>">
    ${type}
</c:forEach>

But can I achieve the same thing without scriptlets?

Cheers, Don

flag

38% accept rate

2 Answers

vote up 0 vote down

hi, what is "myprefix:" in example above?

link|flag
I think myprefix is the prefix used (in a JSP) to refer to the class in which getValues is defined. – Don Oct 5 at 13:40
vote up 3 vote down

If you are using Tag Libraries you could encapsulate the code within an EL function. So the opening tag would become:

<c:forEach var="type" items="${myprefix:getValues()}">

EDIT: In response to discussion about an implementation that would work for multiple Enum types just sketched out this:

public static <T extends Enum<T>> Enum<T>[] getValues(Class<T> klass) {
	try { 
		Method m = klass.getMethod("values", null);
		Object obj = m.invoke(null, null);
		return (Enum<T>[])obj;
	} catch(Exception ex) {
        //shouldn't happen...
		return null;
	}
}
link|flag
If I do it this way I'd need to define an EL function for each enum, which would be a real pain. Defining a single function that works for all enums (probably via reflection) would be preferable. But surely such a function already exists in some JSP taglib? – Don Sep 26 '08 at 20:18
There may well be but I dont know of it, just had a go: public static <T extends Enum<T>> Enum<T>[] getValues(Class<T> klass) { try { Method m = klass.getMethod("values", null); Object obj = m.invoke(null, null); return (Enum<T>[])obj; } catch(Exception ex) { return null; } } – Garth Gilmour Sep 26 '08 at 21:06
Nice work. Boy, is that type parameter <T extends Enum<T>> ugly! I'm criticizing the Java generics implementation here, not your code. I've been forced into similar abominations myself. Thanks for the code. – Don Sep 27 '08 at 2:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.