Enum NotificationDateFormat
- java.lang.Object
-
- java.lang.Enum<NotificationDateFormat>
-
- org.cyclos.impl.utils.notifications.NotificationDateFormat
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationDateFormat>
public enum NotificationDateFormat extends Enum<NotificationDateFormat>
Used in conjunction withDateFormatto specify the pattern used to format a parameter of typeDatein a notification.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATEFormat the date parameter using only the date part.DATE_DIFFIf the difference in days between now and the given date parameter is less than 1 then it is the same asDATE_TIME.DATE_TIMEFormat the date parameter using the full date (with time info).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NotificationDateFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationDateFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATE
public static final NotificationDateFormat DATE
Format the date parameter using only the date part.
-
DATE_TIME
public static final NotificationDateFormat DATE_TIME
Format the date parameter using the full date (with time info).
-
DATE_DIFF
public static final NotificationDateFormat DATE_DIFF
-
-
Method Detail
-
values
public static NotificationDateFormat[] 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 (NotificationDateFormat c : NotificationDateFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationDateFormat 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 nameNullPointerException- if the argument is null
-
-