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