DateDisplayFormatter instead@Deprecated public enum TimeFormatter extends java.lang.Enum<TimeFormatter> implements ValueEnum
| Enum Constant and Description |
|---|
TO24HOURTIME Deprecated. String will display with seconds in 24 hour time: [H]H:MM:SS. |
TOPADDED24HOURTIME Deprecated. String will display with seconds, with a 2 digit hour in 24 hour format:
HH:MM:SS Examples: 15:25:15, 03:16:45 |
TOPADDEDTIME Deprecated. String will display with seconds, with a 2 digit hour and am/pm indicator:
HH:MM:SS am|pm Example: 03:25:15 pm |
TOSHORT24HOURTIME Deprecated. String will have no seconds and be in 24 hour format: [H]H:MMExample: 15:25 |
TOSHORTPADDED24HOURTIME Deprecated. String will have no seconds and will display with a 2 digit hour in 24 hour clock format:
HH:MMExamples: 15:25, 03:16 |
TOSHORTPADDEDTIME Deprecated. String will have no seconds and will display a 2 digit hour, in 12 hour clock format:
HH:MM am|pmExmaple: 03:25 pm |
TOSHORTTIME Deprecated. String will have no seconds and be in 12 hour format: [H]H:MM am|pmExample: 3:25 pm |
TOTIME Deprecated. String will display with seconds and am/pm indicator: [H]H:MM:SS am|pm. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() Deprecated. |
static TimeFormatter | valueOf(java.lang.String name) Deprecated. Returns the enum constant of this type with the specified name. |
static TimeFormatter[] | values() Deprecated. Returns an array containing the constants of this enum type, in the order they are declared. |
public static final TimeFormatter TOTIME
[H]H:MM:SS am|pm. 3:25:15 pmpublic static final TimeFormatter TO24HOURTIME
[H]H:MM:SS. 15:25:15public static final TimeFormatter TOPADDEDTIME
HH:MM:SS am|pm 03:25:15 pmpublic static final TimeFormatter TOPADDED24HOURTIME
HH:MM:SS 15:25:15, 03:16:45public static final TimeFormatter TOSHORTTIME
[H]H:MM am|pm3:25 pmpublic static final TimeFormatter TOSHORT24HOURTIME
[H]H:MM15:25public static final TimeFormatter TOSHORTPADDEDTIME
HH:MM am|pm03:25 pmpublic static final TimeFormatter TOSHORTPADDED24HOURTIME
HH:MM15:25, 03:16public static TimeFormatter[] values()
for (TimeFormatter c : TimeFormatter.values()) System.out.println(c);
public static TimeFormatter valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null