(String[] args)
| 24 | return Enums.random(values); |
| 25 | } |
| 26 | public static void main(String[] args) { |
| 27 | for(int i = 0; i < 10; i++) { |
| 28 | SecurityCategory category = |
| 29 | Enums.random(SecurityCategory.class); |
| 30 | System.out.println(category + ": " + |
| 31 | category.randomSelection()); |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 | /* Output: |
| 36 | BOND: MUNICIPAL |
nothing calls this directly
no test coverage detected