| Enum Constant and Description |
|---|
AM
The 12-hour time suffix indicating a morning time.
|
PM
The 12-hour time suffix indicating a afternoon time.
|
| Modifier and Type | Method and Description |
|---|---|
static AmOrPm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AmOrPm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmOrPm AM
public static final AmOrPm PM
public static AmOrPm[] values()
for (AmOrPm c : AmOrPm.values()) System.out.println(c);
public static AmOrPm 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