public static enum OpenWeatherMap.OWM_URL extends java.lang.Enum<OpenWeatherMap.OWM_URL>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getParameter()
Returns the parameter.
|
static OpenWeatherMap.OWM_URL |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpenWeatherMap.OWM_URL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenWeatherMap.OWM_URL BASE_URL
public static final OpenWeatherMap.OWM_URL PARAMETER_CURRENT_WEATHER
public static final OpenWeatherMap.OWM_URL PARAMETER_FORECAST_WEATHER
public static final OpenWeatherMap.OWM_URL PARAMETER_DAILY_FORECAST
public static final OpenWeatherMap.OWM_URL PARAMETER_SEARCH_CITY
public static final OpenWeatherMap.OWM_URL PARAMETER_COUNT
public static final OpenWeatherMap.OWM_URL PARAMETER_CITY_NAME
public static final OpenWeatherMap.OWM_URL PARAMETER_CITY_ID
public static final OpenWeatherMap.OWM_URL PARAMETER_LATITUDE
public static final OpenWeatherMap.OWM_URL PARAMETER_LONGITUDE
public static final OpenWeatherMap.OWM_URL PARAMETER_MODE
public static final OpenWeatherMap.OWM_URL PARAMETER_UNITS
public static final OpenWeatherMap.OWM_URL PARAMETER_APPID
public static final OpenWeatherMap.OWM_URL PARAMETER_MODE_VALUE_JSON
public static final OpenWeatherMap.OWM_URL PARAMETER_UNITS_VALUE_IMPERIAL
public static final OpenWeatherMap.OWM_URL PARAMETER_UNITS_VALUE_METRIC
public static OpenWeatherMap.OWM_URL[] values()
for (OpenWeatherMap.OWM_URL c : OpenWeatherMap.OWM_URL.values()) System.out.println(c);
public static OpenWeatherMap.OWM_URL valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getParameter()