Enum ForecastsFields
- java.lang.Object
-
- java.lang.Enum<ForecastsFields>
-
- com.aerisweather.aeris.communication.fields.ForecastsFields
-
- All Implemented Interfaces:
CodedInterface
,Serializable
,Comparable<ForecastsFields>
public enum ForecastsFields extends Enum<ForecastsFields> implements CodedInterface
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCode()
Get the code for the defined object.static ForecastsFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static ForecastsFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMESTAMP
public static final ForecastsFields TIMESTAMP
-
VALID_TIME
public static final ForecastsFields VALID_TIME
-
DATETIME_ISO
public static final ForecastsFields DATETIME_ISO
-
MAX_TEMP_C
public static final ForecastsFields MAX_TEMP_C
-
MAX_TEMP_F
public static final ForecastsFields MAX_TEMP_F
-
MIN_TEMP_C
public static final ForecastsFields MIN_TEMP_C
-
MIN_TEMP_F
public static final ForecastsFields MIN_TEMP_F
-
AVG_TEMP_C
public static final ForecastsFields AVG_TEMP_C
-
AVG_TEMP_F
public static final ForecastsFields AVG_TEMP_F
-
TEMP_C
public static final ForecastsFields TEMP_C
-
TEMP_F
public static final ForecastsFields TEMP_F
-
PRECIP_IN
public static final ForecastsFields PRECIP_IN
-
PRECIP_MM
public static final ForecastsFields PRECIP_MM
-
HUMIDITY
public static final ForecastsFields HUMIDITY
-
PRESSURE_MB
public static final ForecastsFields PRESSURE_MB
-
PRESSURE_IN
public static final ForecastsFields PRESSURE_IN
-
SKY
public static final ForecastsFields SKY
-
SNOW_CM
public static final ForecastsFields SNOW_CM
-
SNOW_IN
public static final ForecastsFields SNOW_IN
-
FEELS_LIKE_C
public static final ForecastsFields FEELS_LIKE_C
-
FEELS_LIKE_F
public static final ForecastsFields FEELS_LIKE_F
-
MIN_FEELS_LIKE_C
public static final ForecastsFields MIN_FEELS_LIKE_C
-
MIN_FEELS_LIKE_F
public static final ForecastsFields MIN_FEELS_LIKE_F
-
DEWPOINT_C
public static final ForecastsFields DEWPOINT_C
-
DEWPOINT_F
public static final ForecastsFields DEWPOINT_F
-
WIND_DIR
public static final ForecastsFields WIND_DIR
-
WIND_DIR_DEG
public static final ForecastsFields WIND_DIR_DEG
-
WIND_DIR_MAX_DEG
public static final ForecastsFields WIND_DIR_MAX_DEG
-
WIND_DIR_MAX
public static final ForecastsFields WIND_DIR_MAX
-
WIND_DIR_MIN_DEG
public static final ForecastsFields WIND_DIR_MIN_DEG
-
WIND_DIR_MIN
public static final ForecastsFields WIND_DIR_MIN
-
WIND_GUST_KTS
public static final ForecastsFields WIND_GUST_KTS
-
WIND_GUST_KPH
public static final ForecastsFields WIND_GUST_KPH
-
WIND_GUST_MPH
public static final ForecastsFields WIND_GUST_MPH
-
WIND_SPEED_KTS
public static final ForecastsFields WIND_SPEED_KTS
-
WIND_SPEED_KPH
public static final ForecastsFields WIND_SPEED_KPH
-
WIND_SPEED_MPH
public static final ForecastsFields WIND_SPEED_MPH
-
WIND_SPEED_MAX_KTS
public static final ForecastsFields WIND_SPEED_MAX_KTS
-
WIND_SPEED_MAX_KPH
public static final ForecastsFields WIND_SPEED_MAX_KPH
-
WIND_SPEED_MAX_MPH
public static final ForecastsFields WIND_SPEED_MAX_MPH
-
WIND_SPEED_MIN_KTS
public static final ForecastsFields WIND_SPEED_MIN_KTS
-
WIND_SPEED_MIN_KPH
public static final ForecastsFields WIND_SPEED_MIN_KPH
-
WIND_SPEED_MIN_MPH
public static final ForecastsFields WIND_SPEED_MIN_MPH
-
WEATHER
public static final ForecastsFields WEATHER
-
WEATHER_CODED
public static final ForecastsFields WEATHER_CODED
-
WEATHER_CODED_TIMESTAMP
public static final ForecastsFields WEATHER_CODED_TIMESTAMP
-
WEATHER_CODED_WX
public static final ForecastsFields WEATHER_CODED_WX
-
WEATHER_PRIMARY
public static final ForecastsFields WEATHER_PRIMARY
-
WEATHER_PRIMARY_CODED
public static final ForecastsFields WEATHER_PRIMARY_CODED
-
CLOUDS_CODED
public static final ForecastsFields CLOUDS_CODED
-
ICON
public static final ForecastsFields ICON
-
IS_DAY
public static final ForecastsFields IS_DAY
-
SUNRISE
public static final ForecastsFields SUNRISE
-
SUNRISE_ISO
public static final ForecastsFields SUNRISE_ISO
-
SUNSET
public static final ForecastsFields SUNSET
-
SUNSET_ISO
public static final ForecastsFields SUNSET_ISO
-
VISIBILITY_KM
public static final ForecastsFields VISIBILITY_KM
-
VISIBILITY_MI
public static final ForecastsFields VISIBILITY_MI
-
SOLRAD_WM2
public static final ForecastsFields SOLRAD_WM2
-
SOLRAD_MIN_WM2
public static final ForecastsFields SOLRAD_MIN_WM2
-
SOLRAD_MAX_WM2
public static final ForecastsFields SOLRAD_MAX_WM2
-
-
Method Detail
-
values
public static ForecastsFields[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ForecastsFields c : ForecastsFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ForecastsFields valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
public String getCode()
Description copied from interface:CodedInterface
Get the code for the defined object.- Specified by:
getCode
in interfaceCodedInterface
- Returns:
- String code to be used in requests.
-
-