Coming from the Python background, in order to get all the alphabets, I am used to doing
>>> import string
>>> string.ascii_letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
There are similar helper constants for lower_case and upper_case. What is the equivalent in Java. I looked into String module and could not find any.
I had to manually create a char array and it seemed superflous (or perhaps non-idiomatic) to me.