Is it possible to access a constant value (i.e. a public static final variable defined in a Java class) from a Velocity template?
I would like to be able to write something like this:
#if ($a lt Long.MAX_VALUE)
but this is apparently not the right syntax.