Enum Constant and Description |
---|
DAYS |
HOURS |
MINUTES |
MONTHS |
WEEKS |
YEARS |
Modifier and Type | Method and Description |
---|---|
static TimeView |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeView HOURS
public static final TimeView MINUTES
public static final TimeView DAYS
public static final TimeView WEEKS
public static final TimeView MONTHS
public static final TimeView YEARS
public static TimeView[] values()
for (TimeView c : TimeView.values()) System.out.println(c);
public static TimeView 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