public enum ClockStyle extends Enum<ClockStyle>
| Enum Constant and Description |
|---|
_12
12h+AM/PM clock system
|
_24
24h clock system
|
| Modifier and Type | Method and Description |
|---|---|
static ClockStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClockStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClockStyle _12
public static final ClockStyle _24
public static ClockStyle[] values()
for (ClockStyle c : ClockStyle.values()) System.out.println(c);
public static ClockStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019–2022 Dominokit. All rights reserved.