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