public enum ReporterType extends Enum<ReporterType>
| Enum Constant and Description |
|---|
IOTDB |
JMX |
PROMETHEUS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ReporterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReporterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReporterType JMX
public static final ReporterType PROMETHEUS
public static final ReporterType IOTDB
public static ReporterType[] values()
for (ReporterType c : ReporterType.values()) System.out.println(c);
public static ReporterType 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 nullpublic String toString()
toString in class Enum<ReporterType>Copyright © 2022 The Apache Software Foundation. All rights reserved.