Package apple.corefoundation.enums
Class CFISO8601DateFormatOptions
- java.lang.Object
-
- apple.corefoundation.enums.CFISO8601DateFormatOptions
-
public final class CFISO8601DateFormatOptions extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longColonSeparatorInTimeAdd separator for time (":")static longColonSeparatorInTimeZoneAdd ":" separator in timezone (eg. +08:00)static longDashSeparatorInDateAdd separator for date ("-")static longDayThe format for day is inferred based on provided optionsstatic longFractionalSecondsAdd 3 significant digits of fractional seconds (".SSS")static longFullDatestatic longFullTimestatic longInternetDateTimeRFC3339static longMonthThe format for year is inferred based on whether or not the week of year option is specifiedstatic longSpaceBetweenDateAndTimeUse space instead of "T"static longTimeThis uses the format "HHmmss"static longTimeZonestatic longWeekOfYearThis includes the "W" prefix (e.g.static longYearThe format for year is inferred based on whether or not the week of year option is specified
-
-
-
Field Detail
-
Year
public static final long Year
The format for year is inferred based on whether or not the week of year option is specified. - if week of year is present, "YYYY" is used to display week dates. - if week of year is not present, "yyyy" is used by default.- See Also:
- Constant Field Values
-
Month
public static final long Month
The format for year is inferred based on whether or not the week of year option is specified. - if week of year is present, "YYYY" is used to display week dates. - if week of year is not present, "yyyy" is used by default.- See Also:
- Constant Field Values
-
WeekOfYear
public static final long WeekOfYear
This includes the "W" prefix (e.g. "W49")- See Also:
- Constant Field Values
-
Day
public static final long Day
The format for day is inferred based on provided options. - if month is not present, day of year ("DDD") is used. - if month is present, day of month ("dd") is used. - if either weekOfMonth or weekOfYear is present, local day of week ("ee") is used.- See Also:
- Constant Field Values
-
Time
public static final long Time
This uses the format "HHmmss"- See Also:
- Constant Field Values
-
TimeZone
public static final long TimeZone
- See Also:
- Constant Field Values
-
SpaceBetweenDateAndTime
public static final long SpaceBetweenDateAndTime
Use space instead of "T"- See Also:
- Constant Field Values
-
DashSeparatorInDate
public static final long DashSeparatorInDate
Add separator for date ("-")- See Also:
- Constant Field Values
-
ColonSeparatorInTime
public static final long ColonSeparatorInTime
Add separator for time (":")- See Also:
- Constant Field Values
-
ColonSeparatorInTimeZone
public static final long ColonSeparatorInTimeZone
Add ":" separator in timezone (eg. +08:00)- See Also:
- Constant Field Values
-
FullDate
public static final long FullDate
- See Also:
- Constant Field Values
-
FullTime
public static final long FullTime
- See Also:
- Constant Field Values
-
InternetDateTime
public static final long InternetDateTime
RFC3339- See Also:
- Constant Field Values
-
FractionalSeconds
public static final long FractionalSeconds
Add 3 significant digits of fractional seconds (".SSS")- See Also:
- Constant Field Values
-
-