\"Auto increment\" alphabet in Java - is this possible? From A to Z without a third-party library?
for (char c = 'A'; c <= 'Z'; c++) { ... }