(String country)
| 260 | private String country; |
| 261 | |
| 262 | Country(String country) { |
| 263 | this.country = country; |
| 264 | } |
| 265 | |
| 266 | public static Country getRandom() { |
| 267 | return values()[new SecureRandom().nextInt(values().length)]; |
nothing calls this directly
no outgoing calls
no test coverage detected