Class ISO8601


  • public class ISO8601
    extends java.lang.Object
    Definitions related to ISO 8601-2004, "Data elements and interchange formats — Information interchange — Representation of dates and times".
    Author:
    Garret Wilson
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static char DATE_DELIMITER
      The delimiter that separates year components in a temporal.
      static Characters SIGNS
      The signs of a number.
      static char TIME_BEGIN
      The delimiter that introduces a time component in a temporal.
      static char TIME_DELIMITER
      The delimiter that separates time components in a temporal.
      static char TIME_SUBSECONDS_DELIMITER
      The delimiter that separates time subseconds from seconds.
      static char UTC_DESIGNATOR
      The UTC designator for "Zulu Time", 'Z'.
    • Constructor Summary

      Constructors 
      Constructor Description
      ISO8601()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • TIME_BEGIN

        public static final char TIME_BEGIN
        The delimiter that introduces a time component in a temporal.
        See Also:
        Constant Field Values
      • DATE_DELIMITER

        public static final char DATE_DELIMITER
        The delimiter that separates year components in a temporal.
        See Also:
        Constant Field Values
      • TIME_DELIMITER

        public static final char TIME_DELIMITER
        The delimiter that separates time components in a temporal.
        See Also:
        Constant Field Values
      • TIME_SUBSECONDS_DELIMITER

        public static final char TIME_SUBSECONDS_DELIMITER
        The delimiter that separates time subseconds from seconds.
        See Also:
        Constant Field Values
      • UTC_DESIGNATOR

        public static final char UTC_DESIGNATOR
        The UTC designator for "Zulu Time", 'Z'.
        See Also:
        Constant Field Values
      • SIGNS

        public static final Characters SIGNS
        The signs of a number.
    • Constructor Detail

      • ISO8601

        public ISO8601()