Class DateFormatUtils
java.lang.Object
overit.geocallapp.utilities.ux.ui.util.date.DateFormatUtils
Utility class for formatting and retrieving names of dates, such as
days of the week and months of the year.
- Since:
- 19.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic StringgetDayFullName(Date date, Teacher teacher) Retrieves the full name of the day of the week for the specifiedDate.static StringgetDayShortName(Date date, Teacher teacher) Retrieves the abbreviated name of the day of the week for the specifiedDate.static StringgetMonthFullName(Date date, Teacher teacher) Retrieves the full name of the month for the specifiedDate.static StringgetMonthShortName(Date date, Teacher teacher) Retrieves the abbreviated name of the month for the specifiedDate.static DateroundDownMinutes(Date target) static DateroundUpMinutes(Date target) static DateroundUpSeconds(Date target)
-
Method Details
-
getMonthFullName
Retrieves the full name of the month for the specifiedDate.- Parameters:
date- theDateinstance from which to extract the monthteacher- the interface used to provide custom or localized translations- Returns:
- the full name of the month (e.g., "January")
-
getMonthShortName
Retrieves the abbreviated name of the month for the specifiedDate.- Parameters:
date- theDateinstance from which to extract the monthteacher- the interface used to provide custom or localized translations- Returns:
- the abbreviated name of the month (e.g., "Jan")
-
getDayFullName
Retrieves the full name of the day of the week for the specifiedDate.- Parameters:
date- theDateinstance from which to extract the dayteacher- the interface used to provide custom or localized translations- Returns:
- the full name of the day (e.g., "Monday")
-
getDayShortName
Retrieves the abbreviated name of the day of the week for the specifiedDate.- Parameters:
date- theDateinstance from which to extract the dayteacher- the interface used to provide custom or localized translations- Returns:
- the abbreviated name of the day (e.g., "Mon")
-
roundUpMinutes
-
roundDownMinutes
-
roundUpSeconds
-