Comment #1 on issue 8 by
mohit.gu...@vedantatree.com: Support for Integer
This case can happen only in case of PropertyExpression evaluation where
any Property can be of Integer, Short etc. In normal expression string
parsing, the number will always be taken as of Long type.
Now, although extending the class and specify extended class in config is
one possible solution.
Another solution could be to modify Property Expression to upgrade the type
to widest type in same category, i.e.
Byte, Short, Integer, Long > Long
Character, String > Character
Adding more type mappings in expression is feasible, but implementation
would be same for these different types, with the addition of few more
checks
Any inputs, any impact on result..?