public enum METRIC_ENGINE extends Enum<METRIC_ENGINE>
Enum Constant and Description |
---|
INFLUXDB |
MY_CONTROLLER |
Modifier and Type | Method and Description |
---|---|
static METRIC_ENGINE |
fromString(String text) |
static METRIC_ENGINE |
get(int id) |
String |
getText() |
static METRIC_ENGINE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static METRIC_ENGINE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final METRIC_ENGINE MY_CONTROLLER
public static final METRIC_ENGINE INFLUXDB
public static METRIC_ENGINE[] values()
for (METRIC_ENGINE c : METRIC_ENGINE.values()) System.out.println(c);
public static METRIC_ENGINE 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 static METRIC_ENGINE get(int id)
public String getText()
public static METRIC_ENGINE fromString(String text)
Copyright © 2015–2019. All rights reserved.