Description
FIQL parser assumes that enums would be defined in all caps.
In case Enums are not defined in all caps, InjectionUtils.convertStringToPrimitive(String value, Class<?> cls) raises PropertyNotFoundException because it's converting the user provided enum value to caps and calling ENUM.valueOf(UPPERCASE_STR).
ethod m = cls.getMethod("valueOf", new Class[]
{String.class});
return m.invoke(null, value.toUpperCase());
Since JAVA doesn't enforce enums to be all caps, I don't see any reason why FIQLParser should assume this.