Java Utililty Methods Date Long Format

List of utility methods to do Date Long Format

Description

The list of methods to do Date Long Format are organized into topic(s).

Method

StringgetLongPattern(final Locale locale)
get Long Pattern
return ((SimpleDateFormat) getDateTimeInstance(LONG, LONG, locale)).toPattern();
StringgetLongTime()
get Long Time
return longsdf.format(new Date());
StringgetLongWeekday(int dayOfWeek)
Return the long name of the weekday
return getLongWeekday(dayOfWeek, Locale.getDefault());