public static enum Collector.Type extends Enum<Collector.Type>
Enum Constant and Description |
---|
COUNTER |
GAUGE |
HISTOGRAM |
SUMMARY |
UNTYPED |
Modifier and Type | Method and Description |
---|---|
static Collector.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Collector.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Collector.Type COUNTER
public static final Collector.Type GAUGE
public static final Collector.Type SUMMARY
public static final Collector.Type HISTOGRAM
public static final Collector.Type UNTYPED
public static Collector.Type[] values()
for (Collector.Type c : Collector.Type.values()) System.out.println(c);
public static Collector.Type 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 © 2018. All Rights Reserved.