Enum Class DateFormat
- All Implemented Interfaces:
Serializable
,Comparable<DateFormat>
,Constable
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 ConstantsEnum ConstantDescriptionRepresents the day only date format, specified atmisc.simple-date-format.day
in the messages' files.Represents the full date format, specified atmisc.simple-date-format.full
in the messages' files.Represents the hour only date format, specified atmisc.simple-date-format.hour
in the messages' files. -
Method Summary
Modifier and TypeMethodDescriptionstatic DateFormat
Returns the enum constant of this class with the specified name.static DateFormat[]
values()
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
-
Enum Constant Details
-
FULL
Represents the full date format, specified atmisc.simple-date-format.full
in the messages' files. -
DAY
Represents the day only date format, specified atmisc.simple-date-format.day
in the messages' files. -
HOUR
Represents the hour only date format, specified atmisc.simple-date-format.hour
in the messages' files.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-