Created
February 16, 2016 14:43
-
-
Save edesdan/f991b9b79f27ae0193f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private MONTHS randomJobStatusForMockEvent() { | |
List<MONTHS> values = Collections.unmodifiableList(Arrays.asList(MONTHS.values())); | |
int size = values.size(); | |
return values.get(random.nextInt(size)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment