Package org.eclipse.jetty.util
Class DateCache
java.lang.Object
org.eclipse.jetty.util.DateCache
Computes String representations of Dates then caches the results so
that subsequent requests within the same second will be fast.
If consecutive calls are frequently very different, then this may be a little slower than a normal DateFormat.
- See Also:
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
ConstructorDescriptionMake a DateCache that will use a default format.Make a DateCache that will use the given format. -
Method Summary
Modifier and TypeMethodDescriptionprotected String
doFormat
(long inDate, DateTimeFormatter formatter) Format a date according to supplied formatter.format
(long inDate) Format a date according to our stored formatter.Format a date according to our stored formatter.protected DateCache.Tick
formatTick
(long inDate)
-
Field Details
-
DEFAULT_FORMAT
- See Also:
-
-
Constructor Details
-
DateCache
public DateCache()Make a DateCache that will use a default format. The default format generates the same results as Date.toString(). -
DateCache
Make a DateCache that will use the given format.- Parameters:
format
- the format to use
-
DateCache
-
DateCache
-
DateCache
-
DateCache
-
-
Method Details
-
getTimeZone
-
format
Format a date according to our stored formatter. If it happens to be in the same second as the last formatNow call, then the format is reused.- Parameters:
inDate
- the Date.- Returns:
- Formatted date.
-
format
Format a date according to our stored formatter. If it happens to be in the same second as the last formatNow call, then the format is reused.- Parameters:
inDate
- the date in milliseconds since unix epoch.- Returns:
- Formatted date.
-
doFormat
Format a date according to supplied formatter.- Parameters:
inDate
- the date in milliseconds since unix epoch.- Returns:
- Formatted date.
-
formatTick
-
getFormatString
-