Enum Class DateFormat

java.lang.Object
java.lang.Enum<DateFormat>
me.remigio07.chatplugin.api.server.util.DateFormat
All Implemented Interfaces:
Serializable, Comparable<DateFormat>, Constable

public enum DateFormat extends Enum<DateFormat>
Represents a date format (full, day only, hour only).
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Represents the day only date format, specified at misc.simple-date-format.day in the messages' files.
    Represents the full date format, specified at misc.simple-date-format.full in the messages' files.
    Represents the hour only date format, specified at misc.simple-date-format.hour in the messages' files.
  • Method Summary

    Modifier and Type
    Method
    Description
    static DateFormat
    Returns the enum constant of this class with the specified name.
    static DateFormat[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • FULL

      public static final DateFormat FULL
      Represents the full date format, specified at misc.simple-date-format.full in the messages' files.
    • DAY

      public static final DateFormat DAY
      Represents the day only date format, specified at misc.simple-date-format.day in the messages' files.
    • HOUR

      public static final DateFormat HOUR
      Represents the hour only date format, specified at misc.simple-date-format.hour in the messages' files.
  • 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