PopupDateFormat

sealed class PopupDateFormat

Represents the format of a date field in a pop-up.

Note: The structure of the date will not automatically adjust to locale-specific formats. However, the language and abbreviations will be localized according to the default locale. Different enumerated subtypes are provided to match the locale-specific format, for example:

All provided examples assume the locale is set to en-US.

Since

200.1.0

Inheritors

Types

Link copied to clipboard

Example: 30 Dec 1997. The corresponding DateTimeFormatter pattern is: "d MMM yyyy"

Link copied to clipboard

Example: 30 Dec 1997 05:59:59 PM. The corresponding DateTimeFormatter pattern is: "d MMM yyyy hh:mm:ss a"

Link copied to clipboard

Example: 30 Dec 1997 17:59:59. The corresponding DateTimeFormatter pattern is: "d MMM yyyy HH:mm:ss"

Link copied to clipboard

Example: 30 Dec 1997 06:00 PM. The corresponding DateTimeFormatter pattern is: "d MMM yyyy hh:mm a"

Link copied to clipboard

Example: 30 Dec 1997 18:00. The corresponding DateTimeFormatter pattern is: "d MMM yyyy HH:mm"

Link copied to clipboard

Example: Tuesday, December 30, 1997. The corresponding DateTimeFormatter pattern is: "EEEE, MMMM d, yyyy"

Link copied to clipboard

Example: Tuesday, December 30, 1997 05:59:59 PM. The corresponding DateTimeFormatter pattern is: "EEEE, MMMM d, yyyy hh:mm:ss a"

Link copied to clipboard

Example: Tuesday, December 30, 1997 17:59:59. The corresponding DateTimeFormatter pattern is: "EEEE, MMMM d, yyyy HH:mm:ss"

Link copied to clipboard

Example: Tuesday, December 30, 1997 06:00 PM. The corresponding DateTimeFormatter pattern is: "EEEE, MMMM d, yyyy hh:mm a"

Link copied to clipboard

Example: Tuesday, December 30, 1997 18:00. The corresponding DateTimeFormatter pattern is: "EEEE, MMMM d, yyyy HH:mm"

Link copied to clipboard

Example: December 30, 1997. The corresponding DateTimeFormatter pattern is: "MMMM d, yyyy"

Link copied to clipboard

Example: December 30 1997 05:59:59 PM. The corresponding DateTimeFormatter pattern is: "MMMM d yyyy hh:mm:ss a"

Link copied to clipboard

Example: December 30 1997 17:59:59. The corresponding DateTimeFormatter pattern is: "MMMM d yyyy HH:mm:ss"

Link copied to clipboard

Example: December 30 1997 06:00 PM. The corresponding DateTimeFormatter pattern is: "MMMM d yyyy hh:mm a"

Link copied to clipboard

Example: December 30 1997 18:00. The corresponding DateTimeFormatter pattern is: "MMMM d yyyy HH:mm"

Link copied to clipboard

Example: December 1997. The corresponding DateTimeFormatter pattern is: "MMMM yyyy"

Link copied to clipboard

Example: 12/30/1997. The corresponding DateTimeFormatter pattern is: "MM/dd/yyyy"

Link copied to clipboard

Example: 30/12/1997. The corresponding DateTimeFormatter pattern is: "dd/MM/yyyy"

Link copied to clipboard

Example: 30/12/1997 05:59:59 PM. The corresponding DateTimeFormatter pattern is: "dd/MM/yyyy hh:mm:ss a"

Link copied to clipboard

Example: 30/12/1997 17:59:59. The corresponding DateTimeFormatter pattern is: "dd/MM/yyyy HH:mm:ss"

Link copied to clipboard

Example: 30/12/1997 06:00 PM. The corresponding DateTimeFormatter pattern is: "dd/MM/yyyy hh:mm a"

Link copied to clipboard

Example: 30/12/1997 18:00. The corresponding DateTimeFormatter pattern is: "dd/MM/yyyy HH:mm"

Link copied to clipboard

Example: 12/30/1997 05:59:59 PM. The corresponding DateTimeFormatter pattern is: "MM/dd/yyyy hh:mm:ss a"

Link copied to clipboard

Example: 12/30/1997 17:59:59. The corresponding DateTimeFormatter pattern is: "MM/dd/yyyy HH:mm:ss"

Link copied to clipboard

Example: 12/30/1997 06:00 PM. The corresponding DateTimeFormatter pattern is: "MM/dd/yyyy hh:mm a"

Link copied to clipboard

Example: 12/30/1997 18:00. The corresponding DateTimeFormatter pattern is: "MM/dd/yyyy HH:mm"

Link copied to clipboard

Example: Dec 1997. The corresponding DateTimeFormatter pattern is: "MMM yyyy"

Link copied to clipboard

Unknown date format.

Link copied to clipboard

Example: 1997. The corresponding DateTimeFormatter pattern is: "yyyy"

Properties

Link copied to clipboard
Link copied to clipboard

A pattern representing the date format using symbols compatible with java.time.format.DateTimeFormatter.