Hi There, Can I get any phoenix column in Natural sort order?
For eg: If I have column with values as test11 test500 42 test9 test3 1 51 then the output should be like 1 42 51 test3 test9 test11 test500 any suggestions please? Thanks, PS: I have used AlphonumComparator class referred from [ http://www.davekoelle.com/alphanum.html ] which solves the requirementof sorting a java collection using Collections.sort method.
