public enum HistogramIntervalType extends Enum<HistogramIntervalType>
| Modifier and Type | Method and Description |
|---|---|
static HistogramIntervalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HistogramIntervalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HistogramIntervalType month
public static final HistogramIntervalType week
public static final HistogramIntervalType day
public static final HistogramIntervalType hour
public static final HistogramIntervalType minute
public static HistogramIntervalType[] values()
for (HistogramIntervalType c : HistogramIntervalType.values()) System.out.println(c);
public static HistogramIntervalType 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 © 2015 JBoss, a division of Red Hat. All rights reserved.