public enum SensorTypes extends Enum<SensorTypes>
| Enum Constant and Description |
|---|
ForecastPredictedRefinedWithRealTimeInformation
Forecast (predicted, refined with real-time information)
|
NoDataDefault
No data (default)
|
NowcastAContinuousForecast
Nowcast (a continuous forecast)
|
PredictedBasedOnHistoricalStatistics
Predicted (based on historical statistics)
|
RawRealTime
Raw real time
|
RealTimeWithQualityControl
Real time with quality control
|
ReservedForFutureUse
(reserved for future use)
|
SensorNotAvailable
Sensor not available
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SensorTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SensorTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SensorTypes NoDataDefault
public static final SensorTypes RawRealTime
public static final SensorTypes RealTimeWithQualityControl
public static final SensorTypes PredictedBasedOnHistoricalStatistics
public static final SensorTypes ForecastPredictedRefinedWithRealTimeInformation
public static final SensorTypes NowcastAContinuousForecast
public static final SensorTypes ReservedForFutureUse
public static final SensorTypes SensorNotAvailable
public static SensorTypes[] values()
for (SensorTypes c : SensorTypes.values()) System.out.println(c);
public static SensorTypes 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<SensorTypes>Copyright © 2016. All rights reserved.