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