Enum DateTimeFormat

  • All Implemented Interfaces:
    Serializable, Comparable<DateTimeFormat>

    public enum DateTimeFormat
    extends Enum<DateTimeFormat>
    Enum class of the allowed date and time formats. Allowed formats are devised from https://www.w3.org/TR/NOTE-datetime
    Version:
    1.0
    Author:
    Kleanthi Georgala (georgala@informatik.uni-leipzig.de)
    • Method Detail

      • values

        public static DateTimeFormat[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DateTimeFormat c : DateTimeFormat.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DateTimeFormat valueOf​(String name)
        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 name
        NullPointerException - if the argument is null
      • getPattern

        public String getPattern()
      • getDate

        public static Date getDate​(String timeStamp)
        Returns the Date value of a time stamp
        Parameters:
        timeStamp - , the input time stamp
        Returns:
        the Date value of the time stamp