\"Auto increment\" alphabet in Java - is this possible? From A to Z without a third-party library?
Yes, like this:
for (int i = 0; i < 26; i++) { char upper = (char) ('A' + i); char lower = (char) ('a' + i); ... }