Jak skanować jako list w Javie

Scanner scanner = new Scanner(System.in);
String str = scanner.next();
char ch = str.charAt(0);
Fierce Flamingo