Skip to content

Instantly share code, notes, and snippets.

View edesdan's full-sized avatar

Daniele De Sanctis edesdan

  • Italy
View GitHub Profile
private MONTHS randomJobStatusForMockEvent() {
List<MONTHS> values = Collections.unmodifiableList(Arrays.asList(MONTHS.values()));
int size = values.size();
return values.get(random.nextInt(size));
}