|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.atlassian.confluence.core.DateFormatter
Formats dates and times into a given timezone. TODO: Should support user locales
Constructor Summary | |
DateFormatter(TimeZone timeZone,
FormatSettingsManager formatSettingsManager)
Create a date formatter for the specified timezone. |
Method Summary | |
String |
format(Date date)
Formats the date and returns it as a string, using the date formatting pattern. |
String |
formatBlogDate(Date date)
Formats the date as a blog posting date and returns it as a string. |
String |
formatDateFull(Date date)
Formats the date and returns it as a string, using DateFormat.FULL as
the formatting pattern. |
String |
formatDateTime(Date date)
Formats the date and returns it as a string, using the date-time formatting pattern. |
static String |
formatMillis(long millis)
|
String |
formatServerDate(Date date)
Same as format(Date) , but doesn't perform time zone conversion. |
String |
formatServerDateFull(Date date)
Same as formatDateFull(Date) , but doesn't perform time zone conversion. |
String |
formatServerDateTime(Date date)
Same as formatDateTime(Date) , but doesn't perform time zone conversion. |
String |
formatTime(Date date)
Formats the date and returns it as a string, using the time formatting pattern. |
Calendar |
getCalendar()
|
String |
getCurrentDateTime()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public DateFormatter(TimeZone timeZone, FormatSettingsManager formatSettingsManager)
timeZone
- the time zone in which dates will be formattedMethod Detail |
public String format(Date date)
The TimeZone
specified in the constructor is used to convert the date
from server time to the user's local time.
public String formatDateTime(Date date)
The TimeZone
specified in the constructor is used to convert the date
from server time to the user's local time.
public String formatTime(Date date)
The TimeZone
specified in the constructor is used to convert the date
from server time to the user's local time.
public String formatDateFull(Date date)
DateFormat.FULL
as
the formatting pattern.
The TimeZone
specified in the constructor is used to convert the date
from server time to the user's local time.
public String formatServerDate(Date date)
format(Date)
, but doesn't perform time zone conversion.
This is typically used for formatting the posting dates of news items, which must be represented the same for all users.
public String formatServerDateTime(Date date)
formatDateTime(Date)
, but doesn't perform time zone conversion.
This is typically used for formatting the posting dates of news items, which must be represented the same for all users.
public String formatBlogDate(Date date)
This method does not apply the TimeZone
specified in the constructor,
but instead uses server's default time zone. A blog post date is part of its identifier,
therefore it must be consistent for all users.
public String formatServerDateFull(Date date)
formatDateFull(Date)
, but doesn't perform time zone conversion.
This is typically used for formatting the posting dates of news items, which must be represented the same for all users.
public String getCurrentDateTime()
formatDateTime(Date)
public Calendar getCalendar()
TimeZone
specified in the constructor.public static String formatMillis(long millis)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |