Struts2 accessing enum from JSP

I have the following class package com.test; public class SomeClass { public enum COLOR {RED,BLUE} } I want to access values of COLOR enum in my JSP. I've tried the following code but it does...