getNameOfDay static method
Implementation
static List<String> getNameOfDay(WeekDayStringTypes type) {
switch (type) {
case WeekDayStringTypes.SHORT:
return getShortNameOfDays();
case WeekDayStringTypes.FULL:
return getFullNameOfDays();
}
}