Получите случайное число от Enum в Java

return Letter.values()[new Random().nextInt(Letter.values().length)];
Lonely Lobster