public enum ShowClocks extends java.lang.Enum<ShowClocks>
Enum Constant and Description |
---|
Always
Indicates that the clocks are always displayed.
|
Default
Indicates that the clocks are displayed for non all-day times.
|
Never
Indicates that the clocks are always hidden.
|
Modifier and Type | Method and Description |
---|---|
static ShowClocks |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShowClocks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowClocks Never
public static final ShowClocks Default
public static final ShowClocks Always
public static ShowClocks[] values()
for (ShowClocks c : ShowClocks.values()) System.out.println(c);
public static ShowClocks 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