Enum Class DateFormat

java.lang.Object
java.lang.Enum<DateFormat>
app.babylon.table.transform.DateFormat
All Implemented Interfaces:
Serializable, Comparable<DateFormat>, Constable

public enum DateFormat extends Enum<DateFormat>
  • Enum Constant Details

    • DMY

      public static final DateFormat DMY
    • YMD

      public static final DateFormat YMD
    • MDY

      public static final DateFormat MDY
    • ExcelLocalDate

      public static final DateFormat ExcelLocalDate
    • ExcelLocalDateTime

      public static final DateFormat ExcelLocalDateTime
    • Unknown

      public static final DateFormat Unknown
  • Method Details

    • values

      public static DateFormat[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DateFormat valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • parse

      public static DateFormat parse(String s)