- All Implemented Interfaces:
Serializable
,Comparable<DateFormat>
,java.lang.constant.Constable
The
DateFormat
contains Date
and DateFormat
related values useful for parsing from and formatting to date String
instances.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAn alternate cookie date format also seen in documentations out there on the internet.Similar date format asNORM_DATE_FORMAT
though not avoiding the space between the date and the time portion of the date format.Date format as used in German speaking locations, first comes the day, last the year, all separated by a dot '.' character.ISO8601, Z means "zero hour offset" also known as "Zulu time" (UTC).The ISO date formatter that formats or parses a date without an offset, such as '2011-12-03'.The ISO date-time formatter that formats or parses a date-time without an offset, such as '2011-12-03T10:15:30'The ISO date-time formatter that formats or parses a date-time with an offset, such as '2011-12-03T10:15:30+01:00'.The ISO-like date-time formatter that formats or parses a date-time with offset and zone, such as '2011-12-03T10:15:30+01:00[Europe/Paris]'.Maximum sortable (first comes the year, last the nanoseconds) date format, contains the date and the time till a granularity of milliseconds.The character 'T' separates the date portion from the time portion of the date format in order to unambiguously parse a such formatted dateString
.Date format usable for (parts of) a filename, e.g. for rotating log files or the such with a granularity of nanoseconds.Minimum sortable (first comes the year, last the day) date format, contains the date without the time.Date format usable for (parts of) a filename, e.g. for rotating log files or the such with a granularity of days.Date format as used for cookies as of the Netscape cookie specification.Normal sortable (first comes the year, last the seconds) date format, contains the date and the time till a granularity of seconds.Date format usable for (parts of) a filename, e.g. for rotating log files or the such with a granularity of seconds.An alternate cookie date format also seen in documentations out there on the internet. -
Method Summary
Modifier and TypeMethodDescriptionGets the formatter.static DateFormat
Returns the enum constant of this type with the specified name.static DateFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NETSCAPE_COOKIE_DATE_FORMAT
Date format as used for cookies as of the Netscape cookie specification. See "https://de.wikipedia.org/wiki/HTTP-Cookie#Cookies_nach_Netscape-Spezifikation" -
ALTERNATE_COOKIE_DATE_FORMAT
An alternate cookie date format also seen in documentations out there on the internet. -
RFC_1123_DATE_TIME_ALIKE
An alternate cookie date format also seen in documentations out there on the internet. Can format something like "Thu, 01-Jan-1970 00:00:10 GMT". Similar to theDateTimeFormatter.RFC_1123_DATE_TIME
formatter. -
MIN_DATE_FORMAT
Minimum sortable (first comes the year, last the day) date format, contains the date without the time. -
NORM_DATE_FORMAT
Normal sortable (first comes the year, last the seconds) date format, contains the date and the time till a granularity of seconds. The character 'T' separates the date portion from the time portion of the date format in order to unambiguously parse a such formatted dateString
. -
MAX_DATE_FORMAT
Maximum sortable (first comes the year, last the nanoseconds) date format, contains the date and the time till a granularity of milliseconds.The character 'T' separates the date portion from the time portion of the date format in order to unambiguously parse a such formatted dateString
. -
ALTERNATE_DATE_FORMAT
Similar date format asNORM_DATE_FORMAT
though not avoiding the space between the date and the time portion of the date format. -
DE_DATE_FORMAT
Date format as used in German speaking locations, first comes the day, last the year, all separated by a dot '.' character. -
MIN_FILENAME_DATE_FORMAT
Date format usable for (parts of) a filename, e.g. for rotating log files or the such with a granularity of days. -
NORM_FILENAME_DATE_FORMAT
Date format usable for (parts of) a filename, e.g. for rotating log files or the such with a granularity of seconds. -
MAX_FILENAME_DATE_FORMAT
Date format usable for (parts of) a filename, e.g. for rotating log files or the such with a granularity of nanoseconds. -
ISO_8601_ZULU_TIME
ISO8601, Z means "zero hour offset" also known as "Zulu time" (UTC). -
ISO_ZONED_DATE_TIME
The ISO-like date-time formatter that formats or parses a date-time with offset and zone, such as '2011-12-03T10:15:30+01:00[Europe/Paris]'. -
ISO_LOCAL_DATE
The ISO date formatter that formats or parses a date without an offset, such as '2011-12-03'. -
ISO_LOCAL_DATE_TIME
The ISO date-time formatter that formats or parses a date-time without an offset, such as '2011-12-03T10:15:30' -
ISO_OFFSET_DATE_TIME
The ISO date-time formatter that formats or parses a date-time with an offset, such as '2011-12-03T10:15:30+01:00'.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getFormatter
Gets the formatter.- Returns:
- the formatter
-