Enum DateFormat

    • Method Detail

      • values

        public static DateFormat[] 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 (DateFormat c : DateFormat.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DateFormat 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
      • forOrderAndSeparator

        public static DateFormat forOrderAndSeparator​(String order,
                                                      char separator)
        Returns the format for the given fields order (which may be "DMY", "MDY" or "YMD") and separator char, or throws IllegalArgumentException if there's no match
      • formatRelative

        public String formatRelative​(DateTime referenceDateTime,
                                     DateTime dateTime)
        Formats a dateTime based on a referenceDateTime. If the reference date time has the same year as the date time then the year won't be displayed.
      • getPattern

        public String getPattern()