(String[] args)
| 36 | return Enums.random(values); |
| 37 | } |
| 38 | public static void main(String[] args) { |
| 39 | for(int i = 0; i < 5; i++) { |
| 40 | for(Meal2 meal : Meal2.values()) { |
| 41 | Food food = meal.randomSelection(); |
| 42 | System.out.println(food); |
| 43 | } |
| 44 | System.out.println("***"); |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | /* Output: |
| 49 | SPRING_ROLLS |
nothing calls this directly
no test coverage detected