i have an Array List with Following values
ArrayList [Admin,Readonly,CSR,adminuser,user,customer]
when i used
Collections.sort(ArrayList)
i'm getting the Following Result
[Admin,CSR,Readonly,adminuser,customer,user]
as per the Java doc the above results are correct, but my Expectation is (sorting irrespective of case (upper / lower case)
[Admin,adminuser,CSR,customer,Readonly,user]
provide an help how will do the sorting irrespective of case in java, is there any other method available
Note: i will do an Automate test for checking the sorting order in the Web table
regards
prabu