| 1 | package other; |
| 2 | |
| 3 | public enum ExampleEnum { |
| 4 | A(1), B(2) { |
| 5 | public String toString() { |
| 6 | return "b"; |
| 7 | } |
| 8 | }; |
| 9 | |
| 10 | private final int value; |
| 11 | |
| 12 | ExampleEnum(int value) { |
| 13 | this.value = value; |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected