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