public static enum SignalFxProperties.HistogramType extends java.lang.Enum<SignalFxProperties.HistogramType>
| Enum Constant and Description |
|---|
CUMULATIVE
Cumulative histogram.
|
DEFAULT
Default, time-based histogram.
|
| Modifier and Type | Method and Description |
|---|---|
static SignalFxProperties.HistogramType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SignalFxProperties.HistogramType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignalFxProperties.HistogramType DEFAULT
public static final SignalFxProperties.HistogramType CUMULATIVE
public static SignalFxProperties.HistogramType[] values()
for (SignalFxProperties.HistogramType c : SignalFxProperties.HistogramType.values()) System.out.println(c);
public static SignalFxProperties.HistogramType 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