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