Class NSISO8601DateFormatOptions


  • public final class NSISO8601DateFormatOptions
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long ColonSeparatorInTime
      Add separator for time (":")
      static long ColonSeparatorInTimeZone
      Add ":" separator in timezone (e.g. +08:00)
      static long DashSeparatorInDate
      Add separator for date ("-")
      static long Day
      The format for day is inferred based on provided options
      static long FractionalSeconds
      Add 3 significant digits of fractional seconds (".SSS")
      static long FullDate  
      static long FullTime  
      static long InternetDateTime
      RFC 3339
      static long Month
      The format for year is inferred based on whether or not the week of year option is specified
      static long SpaceBetweenDateAndTime
      Use space instead of "T"
      static long Time
      This uses the format "HHmmss"
      static long TimeZone  
      static long WeekOfYear
      This includes the "W" prefix (e.g.
      static long Year
      The format for year is inferred based on whether or not the week of year option is specified
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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
      • 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 (e.g. +08:00)
        See Also:
        Constant Field Values
      • FractionalSeconds

        public static final long FractionalSeconds
        Add 3 significant digits of fractional seconds (".SSS")
        See Also:
        Constant Field Values