\"Auto increment\" alphabet in Java - is this possible? From A to Z without a third-party library?
Mandatory Java 8 solution:
IntStream.rangeClosed('A', 'Z') .mapToObj(c -> "" + (char) c) .forEach(System.out::println);