diff --git a/.gitignore b/.gitignore index e71895c..29e97c8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ nbproject/ lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar /build/ build.xml -/lib/CopyLibs/ \ No newline at end of file +/lib/CopyLibs/ +/dist/ \ No newline at end of file diff --git a/README.md b/README.md index bbdccc7..5b37d34 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Download the library's source and binaries from [OWM JAPIs Downloads][1]. ####2.5.0.2 (latest) **Bug-fix version:** + 1. Fixed bugs which caused wrong parsing of date and time. 2. Improved code formatting and readability (for developers). @@ -36,12 +37,14 @@ Download the library's source and binaries from [OWM JAPIs Downloads][1]. ####2.5.0.1 **Implemented:** + 1. Current Weather 2. Weather Forecasts 3. Daily Forecasts 4. Wind degree to direction converter **Not implemented but planned:** + 1. Searching of City 2. Weather Maps 3. Country code to name converter @@ -67,7 +70,7 @@ Kindly have a look on the example below for a clear understanding. ##Example ### Basic Example -####Source Code +####Sample Code import java.io.IOException; import java.net.MalformedURLException; @@ -108,7 +111,7 @@ Professionally, you should always **write code which can handle errors/exception Using OWM JAPIs, you can always check if a particular data is available or not. This is done by using the **has<data-name>()** functions. For example, **hasResponseCode()** function checks if the retrieved data has a response code or not; and if available, response code can be used to check if the whole data was downloaded and parsed correctly or not, as shown below in the example. -####Source Code +####Sample Code import java.io.IOException; import java.net.MalformedURLException; @@ -116,7 +119,7 @@ Using OWM JAPIs, you can always check if a particular data is available or not. import net.aksingh.java.api.owm.OpenWeatherMap; import org.json.JSONException; - public class OwmJapisTest { + public class OwmJapisExample2 { public static void main(String[] args) throws IOException, MalformedURLException, JSONException { diff --git a/README.pdf b/README.pdf index 1db9da4..a493291 100644 Binary files a/README.pdf and b/README.pdf differ diff --git a/javadoc/allclasses-frame.html b/javadoc/allclasses-frame.html index 9e6f1f3..47d2e99 100644 --- a/javadoc/allclasses-frame.html +++ b/javadoc/allclasses-frame.html @@ -2,10 +2,10 @@ - + -All Classes (OpenWeatherMap.org JAPIs) - +All Classes (OWM JAPIs Docs) + @@ -47,7 +47,6 @@
  • Tools
  • Tools.Convertor
  • Tools.Downloader
  • -
  • Tools.HTML
  • diff --git a/javadoc/allclasses-noframe.html b/javadoc/allclasses-noframe.html index bf640e7..584e7e5 100644 --- a/javadoc/allclasses-noframe.html +++ b/javadoc/allclasses-noframe.html @@ -2,10 +2,10 @@ - + -All Classes (OpenWeatherMap.org JAPIs) - +All Classes (OWM JAPIs Docs) + @@ -47,7 +47,6 @@
  • Tools
  • Tools.Convertor
  • Tools.Downloader
  • -
  • Tools.HTML
  • diff --git a/javadoc/constant-values.html b/javadoc/constant-values.html index cf1237a..f2bfc88 100644 --- a/javadoc/constant-values.html +++ b/javadoc/constant-values.html @@ -2,16 +2,16 @@ - + -Constant Field Values (OpenWeatherMap.org JAPIs) - +Constant Field Values (OWM JAPIs Docs) + @@ -98,27 +98,20 @@ "coord" - - -private final java.lang.String -JSON_DATE_TIME -"dt" - - protected final java.lang.String JSON_MAIN "main" - + protected final java.lang.String JSON_WEATHER "weather" - + protected final java.lang.String @@ -130,383 +123,6 @@
  • - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.AbstractWeatherData.Clouds 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_CLOUDS_ALL"all"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.AbstractWeatherData.Coord 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_COORD_LATITUDE"lat"
    - -private final java.lang.StringJSON_COORD_LONGITUDE"lon"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.AbstractWeatherData.Main 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_MAIN_HUMIDITY"humidity"
    - -private final java.lang.StringJSON_MAIN_PRESSURE"pressure"
    - -private final java.lang.StringJSON_MAIN_TEMP"temp"
    - -private final java.lang.StringJSON_MAIN_TEMP_MAX"temp_max"
    - -private final java.lang.StringJSON_MAIN_TEMP_MIN"temp_min"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.AbstractWeatherData.Weather 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_WEATHER_DESCRIPTION"description"
    - -private final java.lang.StringJSON_WEATHER_ICON"icon"
    - -private final java.lang.StringJSON_WEATHER_ID"id"
    - -private final java.lang.StringJSON_WEATHER_MAIN"main"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.AbstractWeatherData.Wind 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_WIND_DEGREE"deg"
    - -private final java.lang.StringJSON_WIND_SPEED"speed"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.CurrentWeatherData 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_BASE"base"
    - -private final java.lang.StringJSON_CITY_ID"id"
    - -private final java.lang.StringJSON_CITY_NAME"name"
    - -private final java.lang.StringJSON_RAIN"rain"
    - -private final java.lang.StringJSON_RESPONSE_CODE"cod"
    - -private final java.lang.StringJSON_SYS"sys"
    -
  • -
  • - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.CurrentWeatherData.Rain 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_RAIN_3HOURS"3h"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.CurrentWeatherData.Sys 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_SYS_COUNTRY_CODE"country"
    - -private final java.lang.StringJSON_SYS_SUNRISE"sunrise"
    - -private final java.lang.StringJSON_SYS_SUNSET"sunset"
    -
  • -
  • - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.CurrentWeatherData.Wind 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_WIND_GUST"gust"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.DailyForecastData 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_CITY"city"
    - -private final java.lang.StringJSON_FORECAST_LIST"list"
    - -private final java.lang.StringJSON_RESPONSE_CODE"cod"
    - -private final java.lang.StringJSON_RESPONSE_FORECAST_COUNT"cnt"
    - -private final java.lang.StringJSON_RESPONSE_TIME"message"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.DailyForecastData.City 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_CITY_COORD"coord"
    - -private final java.lang.StringJSON_CITY_COUNTRY_CODE"country"
    - -private final java.lang.StringJSON_CITY_ID"id"
    - -private final java.lang.StringJSON_CITY_NAME"name"
    - -private final java.lang.StringJSON_CITY_POPULATION"population"
    -
  • -
  • - @@ -515,41 +131,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - @@ -613,178 +194,6 @@
    net.aksingh.java.api.owm.DailyForecastData.Forecast 
    Modifier and Type
    - -private final java.lang.StringJSON_FORECAST_CLOUDS"clouds"
    - -private final java.lang.StringJSON_FORECAST_HUMIDITY"humidity"
    - -private final java.lang.StringJSON_FORECAST_PRESSURE"pressure"
    - -private final java.lang.StringJSON_FORECAST_WIND_DEGREE"deg"
    - -private final java.lang.StringJSON_FORECAST_WIND_SPEED"speed"
    public final java.lang.String
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.ForecastWeatherData 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_CITY"city"
    - -private final java.lang.StringJSON_FORECAST_LIST"list"
    - -private final java.lang.StringJSON_RESPONSE_CODE"cod"
    - -private final java.lang.StringJSON_RESPONSE_FORECAST_COUNT"cnt"
    - -private final java.lang.StringJSON_RESPONSE_TIME"message"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.ForecastWeatherData.City 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_CITY_COORD"coord"
    - -private final java.lang.StringJSON_CITY_COUNTRY_CODE"country"
    - -private final java.lang.StringJSON_CITY_ID"id"
    - -private final java.lang.StringJSON_CITY_NAME"name"
    - -private final java.lang.StringJSON_CITY_POPULATION"population"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.ForecastWeatherData.Forecast 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_DATE_TIME_TEXT"dt_txt"
    - -private final java.lang.StringJSON_SYS"sys"
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_MAIN_GRND_LEVEL"grnd_level"
    - -private final java.lang.StringJSON_MAIN_SEA_LEVEL"sea_level"
    - -private final java.lang.StringJSON_MAIN_TMP_KF"temp_kf"
    -
  • -
  • - - - - - - - - - - - - - - -
    net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys 
    Modifier and TypeConstant FieldValue
    - -private final java.lang.StringJSON_SYS_POD"pod"
    -
  • diff --git a/javadoc/deprecated-list.html b/javadoc/deprecated-list.html index 27e4a84..1f9c279 100644 --- a/javadoc/deprecated-list.html +++ b/javadoc/deprecated-list.html @@ -2,16 +2,16 @@ - + -Deprecated List (OpenWeatherMap.org JAPIs) - +Deprecated List (OWM JAPIs Docs) + diff --git a/javadoc/help-doc.html b/javadoc/help-doc.html index c74fab7..5e9c737 100644 --- a/javadoc/help-doc.html +++ b/javadoc/help-doc.html @@ -2,16 +2,16 @@ - + -API Help (OpenWeatherMap.org JAPIs) - +API Help (OWM JAPIs Docs) + diff --git a/javadoc/index-files/index-1.html b/javadoc/index-files/index-1.html index 85f6f21..207066a 100644 --- a/javadoc/index-files/index-1.html +++ b/javadoc/index-files/index-1.html @@ -2,16 +2,16 @@ - + -A-Index (OpenWeatherMap.org JAPIs) - +A-Index (OWM JAPIs Docs) + @@ -62,15 +62,16 @@ -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V 

    A

    AbstractWeatherData - Class in net.aksingh.java.api.owm
    -
    This class provides default implementations for CurrentWeatherData - and ForecastWeatherData classes.
    +
    This class provides default implementations for + CurrentWeatherData and + ForecastWeatherData classes.
    AbstractWeatherData() - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData
    @@ -78,9 +79,7 @@
    AbstractWeatherData(JSONObject) - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    AbstractWeatherData.Clouds - Class in net.aksingh.java.api.owm
    @@ -92,9 +91,7 @@
    AbstractWeatherData.Clouds(JSONObject) - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData.Clouds
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    AbstractWeatherData.Coord - Class in net.aksingh.java.api.owm
    @@ -106,9 +103,7 @@
    AbstractWeatherData.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    AbstractWeatherData.Main - Class in net.aksingh.java.api.owm
    @@ -120,9 +115,7 @@
    AbstractWeatherData.Main(JSONObject) - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    AbstractWeatherData.Weather - Class in net.aksingh.java.api.owm
    @@ -134,9 +127,7 @@
    AbstractWeatherData.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    AbstractWeatherData.Wind - Class in net.aksingh.java.api.owm
    @@ -148,12 +139,10 @@
    AbstractWeatherData.Wind(JSONObject) - Constructor for class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    diff --git a/javadoc/index-files/index-10.html b/javadoc/index-files/index-10.html index 35335a4..b11cb06 100644 --- a/javadoc/index-files/index-10.html +++ b/javadoc/index-files/index-10.html @@ -2,16 +2,16 @@ - + -J-Index (OpenWeatherMap.org JAPIs) - +T-Index (OWM JAPIs Docs) + @@ -62,290 +62,31 @@
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    J

    +

    T

    -
    JSON_BASE - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    +
    Tools - Class in net.aksingh.java.api.owm
    -
    Key for JSON variable Base
    +
    Provides various tools, which help doing tasks in this application.
    -
    JSON_CITY - Variable in class net.aksingh.java.api.owm.DailyForecastData
    +
    Tools() - Constructor for class net.aksingh.java.api.owm.Tools
    +
     
    +
    Tools.Convertor - Class in net.aksingh.java.api.owm
    -
    Key for JSON object - City
    +
    Provides methods to do conversions.
    -
    JSON_CITY - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    +
    Tools.Convertor() - Constructor for class net.aksingh.java.api.owm.Tools.Convertor
    +
     
    +
    Tools.Downloader - Class in net.aksingh.java.api.owm
    -
    Key for JSON object - City
    -
    -
    JSON_CITY_COORD - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    Key for JSON object - Coordinates
    -
    -
    JSON_CITY_COORD - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    Key for JSON object - Coordinates
    -
    -
    JSON_CITY_COUNTRY_CODE - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    Key for JSON variable Country code of city
    -
    -
    JSON_CITY_COUNTRY_CODE - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    Key for JSON variable Country code of city
    -
    -
    JSON_CITY_ID - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Key for JSON variable City code (ID)
    -
    -
    JSON_CITY_ID - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    Key for JSON variable City code (ID)
    -
    -
    JSON_CITY_ID - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    Key for JSON variable City code (ID)
    -
    -
    JSON_CITY_NAME - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Key for JSON variable City name
    -
    -
    JSON_CITY_NAME - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    Key for JSON variable City name
    -
    -
    JSON_CITY_NAME - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    Key for JSON variable City name
    -
    -
    JSON_CITY_POPULATION - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    Key for JSON variable Population of city
    -
    -
    JSON_CITY_POPULATION - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    Key for JSON variable Population of city
    -
    -
    JSON_CLOUDS - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Key for JSON object - Clouds
    -
    -
    JSON_CLOUDS_ALL - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Clouds
    -
    -
    Key for JSON variable Clouds -> All - (percentage of all clouds)
    -
    -
    JSON_COORD - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Key for JSON object - Coordinates (Geographic coordinates)
    -
    -
    JSON_COORD_LATITUDE - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    -
    Key for JSON variable Coord -> Latitude
    -
    -
    JSON_COORD_LONGITUDE - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    -
    Key for JSON variable Coord -> Longitude
    -
    -
    JSON_DATE_TIME - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Key for JSON variable Date-Time (date & time of the weather)
    -
    -
    JSON_DATE_TIME_TEXT - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
    -
    Key for JSON variable Date time text
    -
    -
    JSON_FORECAST_CLOUDS - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Key for JSON variable Percentage of clouds
    -
    -
    JSON_FORECAST_HUMIDITY - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Key for JSON variable Humidity
    -
    -
    JSON_FORECAST_LIST - Variable in class net.aksingh.java.api.owm.DailyForecastData
    -
    -
    Key for JSON object - List of forecasts
    -
    -
    JSON_FORECAST_LIST - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    -
    -
    Key for JSON object - List of forecasts
    -
    -
    JSON_FORECAST_PRESSURE - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Key for JSON variable Pressure
    -
    -
    JSON_FORECAST_WIND_DEGREE - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Key for JSON variable Wind degree
    -
    -
    JSON_FORECAST_WIND_SPEED - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Key for JSON variable Wind speed
    -
    -
    JSON_MAIN - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Key for JSON object - Main (Temperature, pressure, etc.)
    -
    -
    JSON_MAIN_GRND_LEVEL - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    -
    Key for JSON variable Main -> Ground level
    -
    -
    JSON_MAIN_HUMIDITY - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Key for JSON variable Main -> Humidity
    -
    -
    JSON_MAIN_PRESSURE - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Key for JSON variable Main -> Pressure
    -
    -
    JSON_MAIN_SEA_LEVEL - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    -
    Key for JSON variable Main -> Sea level
    -
    -
    JSON_MAIN_TEMP - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Key for JSON variable Main -> Temperature
    -
    -
    JSON_MAIN_TEMP_MAX - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Key for JSON variable Main -> Maximum temperature
    -
    -
    JSON_MAIN_TEMP_MIN - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Key for JSON variable Main -> Minimum temperature
    -
    -
    JSON_MAIN_TMP_KF - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    -
    Key for JSON variable Main -> Temperature KF
    -
    -
    JSON_RAIN - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Key for JSON object - Rain
    -
    -
    JSON_RAIN_3HOURS - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    -
    -
    Key for JSON variable Rain -> Rain per 3 hours
    -
    -
    JSON_RESPONSE_CODE - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Key for JSON variable Response code
    -
    -
    JSON_RESPONSE_CODE - Variable in class net.aksingh.java.api.owm.DailyForecastData
    -
    -
    Key for JSON variable Response code
    -
    -
    JSON_RESPONSE_CODE - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    -
    -
    Key for JSON variable Response code
    -
    -
    JSON_RESPONSE_FORECAST_COUNT - Variable in class net.aksingh.java.api.owm.DailyForecastData
    -
    -
    Key for JSON variable Forecast count
    -
    -
    JSON_RESPONSE_FORECAST_COUNT - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    -
    -
    Key for JSON variable Forecast count
    -
    -
    JSON_RESPONSE_TIME - Variable in class net.aksingh.java.api.owm.DailyForecastData
    -
    -
    Key for JSON variable Response time
    -
    -
    JSON_RESPONSE_TIME - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    -
    -
    Key for JSON variable Response time
    -
    -
    JSON_SYS - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Key for JSON object - Sys
    -
    -
    JSON_SYS - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
    -
    Key for JSON object - Sys (pod, etc.)
    -
    -
    JSON_SYS_COUNTRY_CODE - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
    -
    Key for JSON variable Sys -> Country
    -
    -
    JSON_SYS_POD - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    -
    -
    Key for JSON variable Sys -> Pod
    -
    -
    JSON_SYS_SUNRISE - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
    -
    Key for JSON variable Sys -> Sunrise
    -
    -
    JSON_SYS_SUNSET - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
    -
    Key for JSON variable Sys -> Sunset
    -
    -
    JSON_TEMP - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Key for JSON object - Temperature
    -
    -
    JSON_TEMP_DAY - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Key for JSON variable Temp -> Day
    -
    -
    JSON_TEMP_EVENING - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Key for JSON variable Temp -> Evening
    -
    -
    JSON_TEMP_MAX - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Key for JSON variable Temp -> Maximum
    -
    -
    JSON_TEMP_MIN - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Key for JSON variable Temp -> Minimum
    -
    -
    JSON_TEMP_MORNING - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Key for JSON variable Temp -> Morning
    -
    -
    JSON_TEMP_NIGHT - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Key for JSON variable Temp -> Night
    -
    -
    JSON_WEATHER - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Key for JSON array - Weather (Weather name, description, etc.)
    -
    -
    JSON_WEATHER_DESCRIPTION - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Key for JSON variable Weather -> Description
    -
    -
    JSON_WEATHER_ICON - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Key for JSON variable in array Weather -> Icon
    -
    -
    JSON_WEATHER_ID - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Key for JSON variable in array Weather -> ID
    -
    -
    JSON_WEATHER_MAIN - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Key for JSON variable in array Weather -> Main (name of weather)
    -
    -
    JSON_WIND - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Key for JSON object - Wind
    -
    -
    JSON_WIND_DEGREE - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Key for JSON variable Wind -> Degree
    -
    -
    JSON_WIND_GUST - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    -
    -
    Key for JSON variable Wind -> Gust
    -
    -
    JSON_WIND_SPEED - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Key for JSON variable Wind -> Speed
    +
    Provides methods to download data or files from the Internet.
    +
    Tools.Downloader() - Constructor for class net.aksingh.java.api.owm.Tools.Downloader
    +
     
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    diff --git a/javadoc/index-files/index-11.html b/javadoc/index-files/index-11.html index be83700..bc6c3a9 100644 --- a/javadoc/index-files/index-11.html +++ b/javadoc/index-files/index-11.html @@ -2,16 +2,16 @@ - + -L-Index (OpenWeatherMap.org JAPIs) - +V-Index (OWM JAPIs Docs) + @@ -37,7 +37,7 @@ -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    L

    +

    V

    -
    lat - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    +
    valueOf(String) - Static method in enum net.aksingh.java.api.owm.OpenWeatherMap.OWM_URL
    -
    Latitude
    +
    Returns the enum constant of this type with the specified name.
    -
    lon - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    +
    values() - Static method in enum net.aksingh.java.api.owm.OpenWeatherMap.OWM_URL
    -
    Longitude
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    @@ -96,7 +97,7 @@ -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    B

    +

    C

    -
    base - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    +
    convertDegree2Direction(float) - Method in class net.aksingh.java.api.owm.Tools.Convertor
    -
    Base
    +
    Converts degree to direction.
    +
    currentWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    currentWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    currentWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    currentWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    currentWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    currentWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    currentWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    currentWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    CurrentWeatherData - Class in net.aksingh.java.api.owm
    +
    +
    Parses current weather data (from the JSON data) and provides methods to + get/access the information about current weather.
    +
    +
    CurrentWeatherData(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Clouds - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
    +
    +
    CurrentWeatherData.Clouds() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Clouds
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Clouds(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Clouds
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Coord - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
    +
    +
    CurrentWeatherData.Coord() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Coord
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Coord
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Main - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about main weather elements (from the JSON data) and provides + methods to get/access the information.
    +
    +
    CurrentWeatherData.Main() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Main
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Main(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Main
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Rain - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about rain (from the JSON data) and provides methods to + get/access the information.
    +
    +
    CurrentWeatherData.Rain() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Rain(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Sys - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about country, sunrise, and sunset (from the JSON data) and + provides methods to get/access the information.
    +
    +
    CurrentWeatherData.Sys() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Sys(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Weather - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about weather code, name, etc.
    +
    +
    CurrentWeatherData.Weather() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Weather
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Weather
    +
    +
    Parameterized constructor
    +
    +
    CurrentWeatherData.Wind - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about winds (from the JSON data) and provides methods to + get/access the information.
    +
    +
    CurrentWeatherData.Wind() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    +
    +
    Non-parameterized constructor
    +
    +
    CurrentWeatherData.Wind(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    +
    +
    Parameterized constructor
    +
    +
    currentWeatherFromResponse(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    diff --git a/javadoc/index-files/index-20.html b/javadoc/index-files/index-20.html deleted file mode 100644 index 2dff3c2..0000000 --- a/javadoc/index-files/index-20.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -W-Index (OpenWeatherMap.org JAPIs) - - - - - - - -
    - - - - - -
    - - -
    A B C D E F G H I J L M N O P R S T V W  - - -

    W

    -
    -
    weatherList - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    List of weather information (code, name, etc.)
    -
    -
    weatherList - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    List of weather information (code, name, etc.)
    -
    -
    weatherList - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
    -
    List of weather information (code, name, etc.)
    -
    -
    weatherListCount - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Count (number) of elements in list of weather information
    -
    -
    weatherListCount - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Count (number) of elements in list of weather information
    -
    -
    weatherListCount - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
    -
    Count (number) of elements in list of weather information
    -
    -
    wind - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    wind - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    windDegree - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Wind degree
    -
    -
    windSpeed - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Wind speed
    -
    -
    -A B C D E F G H I J L M N O P R S T V W 
    - -
    - - - - - -
    - - - - diff --git a/javadoc/index-files/index-3.html b/javadoc/index-files/index-3.html index 6264871..a61eb28 100644 --- a/javadoc/index-files/index-3.html +++ b/javadoc/index-files/index-3.html @@ -2,16 +2,16 @@ - + -C-Index (OpenWeatherMap.org JAPIs) - +D-Index (OWM JAPIs Docs) + @@ -62,204 +62,109 @@
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    C

    +

    D

    -
    city - Variable in class net.aksingh.java.api.owm.DailyForecastData
    +
    dailyForecastByCityCode(long, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    -
    city - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    +
    dailyForecastByCityCode(long, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
     
    -
    cityID - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    +
    dailyForecastByCityName(String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    dailyForecastByCityName(String, String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    dailyForecastByCityName(String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    dailyForecastByCityName(String, String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    dailyForecastByCoordinates(float, float, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    dailyForecastByCoordinates(float, float, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    DailyForecastData - Class in net.aksingh.java.api.owm
    -
    City code (ID)
    +
    Parses daily forecast data (from the JSON data) and provides methods to + get/access the information about daily forecasted weather.
    -
    cityID - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    +
    DailyForecastData(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData
    -
    City code (ID)
    +
    Parameterized constructor
    -
    cityID - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
    DailyForecastData.City - Class in net.aksingh.java.api.owm
    -
    City code (ID)
    +
    Parses data about city (from the JSON data) and provides methods to + get/access the information.
    -
    cityName - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    City name
    -
    -
    cityName - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    City name
    -
    -
    cityName - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    City name
    -
    -
    clouds - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    clouds - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    cloudsPercent - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Percentage of clouds
    -
    -
    convertDegree2Direction(float) - Method in class net.aksingh.java.api.owm.Tools.Convertor
    -
    -
    Converts degree to direction.
    -
    -
    coord - Variable in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    coord - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    coord - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    countryCode - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
    -
    Country code for the city
    -
    -
    countryCode - Variable in class net.aksingh.java.api.owm.DailyForecastData.City
    -
    -
    Country code of city
    -
    -
    countryCode - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    -
    Country code of city
    -
    -
    currentWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    -
     
    -
    currentWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    -
     
    -
    currentWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    -
     
    -
    currentWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    -
     
    -
    currentWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    -
     
    -
    currentWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    -
     
    -
    currentWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    -
     
    -
    currentWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    -
     
    -
    CurrentWeatherData - Class in net.aksingh.java.api.owm
    -
    -
    Parses current weather data (from the JSON data) and provides methods - to get/access the information about current weather.
    -
    -
    CurrentWeatherData(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    CurrentWeatherData.Clouds - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about clouds (from the JSON data) and provides methods - to get/access the information.
    -
    -
    CurrentWeatherData.Clouds() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Clouds
    +
    DailyForecastData.City() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City
    Non-parameterized constructor
    -
    CurrentWeatherData.Clouds(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Clouds
    +
    DailyForecastData.City(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    CurrentWeatherData.Coord - Class in net.aksingh.java.api.owm
    +
    DailyForecastData.City.Coord - Class in net.aksingh.java.api.owm
    -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    -
    -
    CurrentWeatherData.Coord() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Coord
    -
    -
    Non-parameterized constructor
    -
    -
    CurrentWeatherData.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Coord
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    CurrentWeatherData.Main - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about main weather elements (from the JSON data) and +
    Parses data about geographic coordinates (from the JSON data) and provides methods to get/access the information.
    -
    CurrentWeatherData.Main() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Main
    +
    DailyForecastData.City.Coord() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City.Coord
    Non-parameterized constructor
    -
    CurrentWeatherData.Main(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Main
    +
    DailyForecastData.City.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City.Coord
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    CurrentWeatherData.Rain - Class in net.aksingh.java.api.owm
    +
    DailyForecastData.Forecast - Class in net.aksingh.java.api.owm
    -
    Parses data about rain (from the JSON data) and provides methods +
    Parses data about forecasts (from the JSON data) and provides methods to + get/access the information.
    +
    +
    DailyForecastData.Forecast() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
    +
    Non-parameterized constructor
    +
    +
    DailyForecastData.Forecast(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
    +
    Parameterized constructor
    +
    +
    DailyForecastData.Forecast.Temperature - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about temperature (from the JSON data) and provides + methods to get/access the information.
    +
    +
    DailyForecastData.Forecast.Temperature() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
    +
    Non-parameterized constructor
    +
    +
    DailyForecastData.Forecast.Temperature(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
    +
    Parameterized constructor
    +
    +
    DailyForecastData.Forecast.Weather - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about weather (from the JSON data) and provides methods to get/access the information.
    -
    CurrentWeatherData.Rain() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    +
    DailyForecastData.Forecast.Weather() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Weather
    Non-parameterized constructor
    -
    CurrentWeatherData.Rain(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    +
    DailyForecastData.Forecast.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Weather
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    CurrentWeatherData.Sys - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about country, sunrise, and sunset (from the JSON data) - and provides methods to get/access the information.
    -
    -
    CurrentWeatherData.Sys() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
    -
    Non-parameterized constructor
    -
    -
    CurrentWeatherData.Sys(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    CurrentWeatherData.Weather - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about weather code, name, etc.
    -
    -
    CurrentWeatherData.Weather() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Weather
    -
    -
    Non-parameterized constructor
    -
    -
    CurrentWeatherData.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Weather
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    CurrentWeatherData.Wind - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about winds (from the JSON data) and provides methods - to get/access the information.
    -
    -
    CurrentWeatherData.Wind() - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    -
    -
    Non-parameterized constructor
    -
    -
    CurrentWeatherData.Wind(JSONObject) - Constructor for class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    currentWeatherFromResponse(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    dailyForecastFromResponse(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    +
    downloadPage(String) - Static method in class net.aksingh.java.api.owm.Tools.Downloader
    +
    +
    Downloads a page/content from the Internet.
    +
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    D

    +

    F

    -
    dailyForecastByCityCode(long, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    forecastWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    -
    dailyForecastByCityCode(long, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    forecastWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
     
    -
    dailyForecastByCityName(String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    forecastWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    -
    dailyForecastByCityName(String, String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    forecastWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    -
    dailyForecastByCityName(String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    forecastWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
     
    -
    dailyForecastByCityName(String, String, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    forecastWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
     
    -
    dailyForecastByCoordinates(float, float, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    forecastWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    -
    dailyForecastByCoordinates(float, float, byte) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    forecastWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
     
    -
    DailyForecastData - Class in net.aksingh.java.api.owm
    +
    ForecastWeatherData - Class in net.aksingh.java.api.owm
    -
    Parses daily forecast data (from the JSON data) and provides methods - to get/access the information about daily forecasted weather.
    +
    Parses forecast weather data (from the JSON data) and provides methods to + get/access the information about forecasted weather.
    -
    DailyForecastData(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData
    +
    ForecastWeatherData(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    DailyForecastData.City - Class in net.aksingh.java.api.owm
    +
    ForecastWeatherData.City - Class in net.aksingh.java.api.owm
    -
    Parses data about city (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about city (from the JSON data) and provides methods to + get/access the information.
    -
    DailyForecastData.City() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City
    +
    ForecastWeatherData.City() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City
    Non-parameterized constructor
    -
    DailyForecastData.City(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City
    +
    ForecastWeatherData.City(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    DailyForecastData.City.Coord - Class in net.aksingh.java.api.owm
    +
    ForecastWeatherData.City.Coord - Class in net.aksingh.java.api.owm
    -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
    -
    DailyForecastData.City.Coord() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City.Coord
    +
    ForecastWeatherData.City.Coord() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City.Coord
    Non-parameterized constructor
    -
    DailyForecastData.City.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.City.Coord
    +
    ForecastWeatherData.City.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City.Coord
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    DailyForecastData.Forecast - Class in net.aksingh.java.api.owm
    +
    ForecastWeatherData.Forecast - Class in net.aksingh.java.api.owm
    -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about forecasts (from the JSON data) and provides methods to + get/access the information.
    -
    DailyForecastData.Forecast() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
    ForecastWeatherData.Forecast() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    Non-parameterized constructor
    -
    DailyForecastData.Forecast(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
    ForecastWeatherData.Forecast(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    DailyForecastData.Forecast.Temperature - Class in net.aksingh.java.api.owm
    +
    ForecastWeatherData.Forecast.Clouds - Class in net.aksingh.java.api.owm
    -
    Parses data about temperature (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
    -
    DailyForecastData.Forecast.Temperature() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
    ForecastWeatherData.Forecast.Clouds() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Clouds
    Non-parameterized constructor
    -
    DailyForecastData.Forecast.Temperature(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
    ForecastWeatherData.Forecast.Clouds(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Clouds
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    DailyForecastData.Forecast.Weather - Class in net.aksingh.java.api.owm
    +
    ForecastWeatherData.Forecast.Main - Class in net.aksingh.java.api.owm
    -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
    -
    DailyForecastData.Forecast.Weather() - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Weather
    +
    ForecastWeatherData.Forecast.Main() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    Non-parameterized constructor
    -
    DailyForecastData.Forecast.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.DailyForecastData.Forecast.Weather
    +
    ForecastWeatherData.Forecast.Main(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    -
    dailyForecastFromResponse(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    ForecastWeatherData.Forecast.Sys - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
    +
    +
    ForecastWeatherData.Forecast.Sys() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    +
    +
    Non-parameterized constructor
    +
    +
    ForecastWeatherData.Forecast.Sys(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    +
    +
    Parameterized constructor
    +
    +
    ForecastWeatherData.Forecast.Weather - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about weather (from the JSON data) and provides methods + to get/access the information.
    +
    +
    ForecastWeatherData.Forecast.Weather() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Weather
    +
    +
    Non-parameterized constructor
    +
    +
    ForecastWeatherData.Forecast.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Weather
    +
    +
    Parameterized constructor
    +
    +
    ForecastWeatherData.Forecast.Wind - Class in net.aksingh.java.api.owm
    +
    +
    Parses data about wind (from the JSON data) and provides methods to + get/access the information.
    +
    +
    ForecastWeatherData.Forecast.Wind() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Wind
    +
    +
    Non-parameterized constructor
    +
    +
    ForecastWeatherData.Forecast.Wind(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Wind
    +
    +
    Parameterized constructor
    +
    +
    forecastWeatherFromResponse(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
     
    -
    dateTime - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Date and time of the weather.
    -
    -
    dateTimeText - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
    -
    Date time text
    -
    -
    dayTemp - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    -
    Day temperature
    -
    -
    degree - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Wind degree (direction of wind)
    -
    -
    description - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Weather description
    -
    -
    downloadPage(String) - Static method in class net.aksingh.java.api.owm.Tools.Downloader
    -
    -
    Downloads a page/content from the Internet.
    -
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    E

    +

    G

    -
    eveTemp - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
    getBaseStation() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getCity_Object() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    getCity_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    getCityCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getCityCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    +
     
    +
    getCityCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    getCityName() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getCityName() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    +
     
    +
    getCityName() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    getCityPopulation() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    +
     
    +
    getCityPopulation() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    getClouds_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getClouds_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getCoordinates_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getCoordinates_Object() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    +
     
    +
    getCoordinates_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    getCountryCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
     
    +
    getCountryCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    +
     
    +
    getCountryCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    getDateTime() - Method in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Evening temperature
    +
    Returns data for date and time of this weather.
    +
    getDateTimeText() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getDayTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    getEveningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    getForecast_List() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    getForecast_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    getForecast_List_Count() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    getForecast_List_Count() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    getGroundLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    +
     
    +
    getHumidity() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    +
    Returns data for humidity of the city.
    +
    +
    getHumidity() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getLatitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    +
    +
    Returns data for latitude of the city.
    +
    +
    getLongitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    +
    +
    Returns data for longitude of the city.
    +
    +
    getMainData_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getMainData_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getMaximumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    getMaxTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    +
    Returns data for maximum temperature of the city.
    +
    +
    getMinimumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    getMinTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    +
    Returns data for minimum temperature of the city.
    +
    +
    getMorningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    getNightTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    getParameter() - Method in enum net.aksingh.java.api.owm.OpenWeatherMap.OWM_URL
    +
    +
    Returns the parameter.
    +
    +
    getPercentageOfClouds() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Clouds
    +
    +
    Returns data for percentage of all clouds.
    +
    +
    getPercentageOfClouds() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getPod() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    +
     
    +
    getPressure() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    +
    Returns data for pressure of the city.
    +
    +
    getPressure() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getRain3Hours() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    +
     
    +
    getRain_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getResponseCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getResponseCode() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    getResponseCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    getResponseForecastCount() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    getResponseForecastCount() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    getResponseTime() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    getResponseTime() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    getSeaLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    +
     
    +
    getSunriseTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
     
    +
    getSunsetTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
     
    +
    getSysData_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getSysData_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    +
    Returns data for temperature of the city.
    +
    +
    getTemperature_Object() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getTempKF() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    +
     
    +
    getWeather_List() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getWeather_List() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getWeather_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getWeather_List_Count() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getWeather_List_Count() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getWeather_List_Count() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getWeatherCode() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    +
    Returns data for code for weather of the city.
    +
    +
    getWeatherDescription() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    +
    Returns data for description for weather of the city.
    +
    +
    getWeatherIconName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    +
    Returns data for name of icon for weather of the city.
    +
    +
    getWeatherName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    +
    Returns data for name for weather of the city.
    +
    +
    getWind_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    getWind_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    getWindDegree() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    +
    +
    Returns data for degree of wind in the city.
    +
    +
    getWindDegree() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    getWindGust() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    +
     
    +
    getWindSpeed() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    +
    +
    Returns data for speed of wind in the city.
    +
    +
    getWindSpeed() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    F

    +

    H

    -
    forecastList - Variable in class net.aksingh.java.api.owm.DailyForecastData
    -
    -
    List of forecast information
    -
    -
    forecastList - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    -
    -
    List of forecast information
    -
    -
    forecastListCount - Variable in class net.aksingh.java.api.owm.DailyForecastData
    -
    -
    Count (number) of elements in list of forecast information
    -
    -
    forecastListCount - Variable in class net.aksingh.java.api.owm.ForecastWeatherData
    -
    -
    Count (number) of elements in list of forecast information
    -
    -
    forecastWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    hasBaseStation() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
     
    -
    forecastWeatherByCityCode(long) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    hasCityCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
     
    -
    forecastWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    hasCityCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
     
    -
    forecastWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    hasCityCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
     
    -
    forecastWeatherByCityName(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    hasCityName() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
     
    -
    forecastWeatherByCityName(String, String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    hasCityName() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
     
    -
    forecastWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    hasCityName() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
     
    -
    forecastWeatherByCoordinates(float, float) - Method in class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
    hasCityPopulation() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
     
    -
    ForecastWeatherData - Class in net.aksingh.java.api.owm
    +
    hasCityPopulation() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    hasCountryCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
     
    +
    hasCountryCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    +
     
    +
    hasCountryCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
     
    +
    hasDateTime() - Method in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Parses forecast weather data (from the JSON data) and provides methods - to get/access the information about forecasted weather.
    +
    Tells if the data for date and time of this weather is available or not.
    -
    ForecastWeatherData(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData
    +
    hasDateTimeText() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    hasDayTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    hasEveningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    hasForecast_List() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    hasForecast_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    hasGroundLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    +
     
    +
    hasHumidity() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Tells if the data for humidity of the city is available or not.
    -
    ForecastWeatherData.City - Class in net.aksingh.java.api.owm
    +
    hasHumidity() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    hasLatitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    Parses data about city (from the JSON data) - and provides methods to get/access the information.
    +
    Tells if the data for latitude of the city is available or not.
    -
    ForecastWeatherData.City() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
    hasLongitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    Non-parameterized constructor
    +
    Tells if the data for longitude of the city is available or not.
    -
    ForecastWeatherData.City(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City
    +
    hasMaximumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    hasMaxTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Tells if the data for maximum temperature of the city is available or + not.
    -
    ForecastWeatherData.City.Coord - Class in net.aksingh.java.api.owm
    +
    hasMinimumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    hasMinTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    +
    Tells if the data for minimum temperature of the city is available or + not.
    -
    ForecastWeatherData.City.Coord() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City.Coord
    +
    hasMorningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    hasNightTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    +
     
    +
    hasPercentageOfClouds() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Clouds
    -
    Non-parameterized constructor
    +
    Tells if the data for percentage of all clouds is available or not.
    -
    ForecastWeatherData.City.Coord(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.City.Coord
    +
    hasPercentageOfClouds() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    hasPod() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    +
     
    +
    hasPressure() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Tells if the data for pressure of the city is available or not.
    -
    ForecastWeatherData.Forecast - Class in net.aksingh.java.api.owm
    +
    hasPressure() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    hasRain3Hours() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    +
     
    +
    hasResponseCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    hasResponseCode() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    hasResponseCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    hasResponseForecastCount() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    hasResponseForecastCount() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    hasResponseTime() - Method in class net.aksingh.java.api.owm.DailyForecastData
    +
     
    +
    hasResponseTime() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    +
     
    +
    hasSeaLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    +
     
    +
    hasSunriseTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
     
    +
    hasSunsetTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    +
     
    +
    hasTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
    +
    Tells if the data for temperature of the city is available or not.
    -
    ForecastWeatherData.Forecast() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
    hasTempKF() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    +
     
    +
    hasWeather_List() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
     
    +
    hasWeather_List() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    hasWeather_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
     
    +
    hasWeatherCode() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    Non-parameterized constructor
    +
    Tells if the data for weather's code is available or not.
    -
    ForecastWeatherData.Forecast(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    +
    hasWeatherDescription() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Tells if the data for weather's description is available or not.
    -
    ForecastWeatherData.Forecast.Clouds - Class in net.aksingh.java.api.owm
    +
    hasWeatherIconName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    Parses data about clouds (from the JSON data) - and provides methods to get/access the information.
    +
    Tells if the data for name of weather's icon is available or not.
    -
    ForecastWeatherData.Forecast.Clouds() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Clouds
    +
    hasWeatherName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    Non-parameterized constructor
    +
    Tells if the data for weather's name is available or not.
    -
    ForecastWeatherData.Forecast.Clouds(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Clouds
    +
    hasWindDegree() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Tells if the data for degree (degree gives direction) of wind in the + city is available or not.
    -
    ForecastWeatherData.Forecast.Main - Class in net.aksingh.java.api.owm
    +
    hasWindDegree() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    +
     
    +
    hasWindGust() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    +
     
    +
    hasWindSpeed() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
    +
    Tells if the data for speed of wind in the city is available or not.
    -
    ForecastWeatherData.Forecast.Main() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    -
    Non-parameterized constructor
    -
    -
    ForecastWeatherData.Forecast.Main(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    ForecastWeatherData.Forecast.Sys - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
    -
    -
    ForecastWeatherData.Forecast.Sys() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    -
    -
    Non-parameterized constructor
    -
    -
    ForecastWeatherData.Forecast.Sys(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    ForecastWeatherData.Forecast.Weather - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information.
    -
    -
    ForecastWeatherData.Forecast.Weather() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Weather
    -
    -
    Non-parameterized constructor
    -
    -
    ForecastWeatherData.Forecast.Weather(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Weather
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    ForecastWeatherData.Forecast.Wind - Class in net.aksingh.java.api.owm
    -
    -
    Parses data about wind (from the JSON data) - and provides methods to get/access the information.
    -
    -
    ForecastWeatherData.Forecast.Wind() - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Wind
    -
    -
    Non-parameterized constructor
    -
    -
    ForecastWeatherData.Forecast.Wind(JSONObject) - Constructor for class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Wind
    -
    -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    -
    -
    forecastWeatherFromResponse(String) - Method in class net.aksingh.java.api.owm.OpenWeatherMap
    +
    hasWindSpeed() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
     
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    G

    +

    J

    -
    getBaseStation() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getCity_Object() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    getCity_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    getCityCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getCityCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    getCityCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    getCityName() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getCityName() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    getCityName() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    getCityPopulation() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    getCityPopulation() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    getClouds_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getClouds_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getCoordinates_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getCoordinates_Object() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    getCoordinates_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    getCountryCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
     
    -
    getCountryCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    getCountryCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    getDateTime() - Method in class net.aksingh.java.api.owm.AbstractWeatherData
    +
    JSON_CLOUDS - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Returns data for date and time of this weather.
    +
    Key for JSON object - Clouds
    -
    getDateTimeText() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getDayTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    getEveningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    getForecast_List() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    getForecast_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    getForecast_List_Count() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    getForecast_List_Count() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    getGroundLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
     
    -
    getHumidity() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    JSON_COORD - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Returns data for humidity of the city.
    +
    Key for JSON object - Coordinates (Geographic coordinates)
    -
    getHumidity() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getLatitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    +
    JSON_MAIN - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Returns data for latitude of the city.
    +
    Key for JSON object - Main (Temperature, pressure, etc.)
    -
    getLongitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    +
    JSON_TEMP - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    Returns data for longitude of the city.
    +
    Key for JSON object - Temperature
    -
    getMainData_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getMainData_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getMaximumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    getMaxTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    JSON_TEMP_DAY - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    Returns data for maximum temperature of the city.
    +
    Key for JSON variable Temp -> Day
    -
    getMinimumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    getMinTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    JSON_TEMP_EVENING - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    Returns data for minimum temperature of the city.
    +
    Key for JSON variable Temp -> Evening
    -
    getMorningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    getNightTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    getParameter() - Method in enum net.aksingh.java.api.owm.OpenWeatherMap.OWM_URL
    +
    JSON_TEMP_MAX - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    Returns the parameter.
    +
    Key for JSON variable Temp -> Maximum
    -
    getPercentageOfClouds() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Clouds
    +
    JSON_TEMP_MIN - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    Returns data for percentage of all clouds.
    +
    Key for JSON variable Temp -> Minimum
    -
    getPercentageOfClouds() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getPod() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    -
     
    -
    getPressure() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    JSON_TEMP_MORNING - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    Returns data for pressure of the city.
    +
    Key for JSON variable Temp -> Morning
    -
    getPressure() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getRain3Hours() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    -
     
    -
    getRain_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getResponseCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getResponseCode() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    getResponseCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    getResponseForecastCount() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    getResponseForecastCount() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    getResponseTime() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    getResponseTime() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    getSeaLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
     
    -
    getSunriseTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
     
    -
    getSunsetTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
     
    -
    getSysData_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getSysData_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    +
    JSON_TEMP_NIGHT - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
    Returns data for temperature of the city.
    +
    Key for JSON variable Temp -> Night
    -
    getTemperature_Object() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getTempKF() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
     
    -
    getWeather_List() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getWeather_List() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getWeather_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getWeather_List_Count() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getWeather_List_Count() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getWeather_List_Count() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getWeatherCode() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    JSON_WEATHER - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Returns data for code for weather of the city.
    +
    Key for JSON array - Weather (Weather name, description, etc.)
    -
    getWeatherDescription() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    JSON_WIND - Variable in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    Returns data for description for weather of the city.
    -
    -
    getWeatherIconName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Returns data for name of icon for weather of the city.
    -
    -
    getWeatherName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Returns data for name for weather of the city.
    -
    -
    getWind_Object() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    getWind_Object() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    getWindDegree() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Returns data for degree of wind in the city.
    -
    -
    getWindDegree() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    getWindGust() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    -
     
    -
    getWindSpeed() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Returns data for speed of wind in the city.
    -
    -
    getWindSpeed() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    groundLevel - Variable in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
    -
    Ground level
    -
    -
    gust - Variable in class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    -
    -
    Wind gust
    +
    Key for JSON object - Wind
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    H

    +

    N

    -
    hasBaseStation() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    +
    net.aksingh.java.api.owm - package net.aksingh.java.api.owm
     
    -
    hasCityCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    hasCityCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    hasCityCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    hasCityName() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    hasCityName() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    hasCityName() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    hasCityPopulation() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    hasCityPopulation() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    hasCountryCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
     
    -
    hasCountryCode() - Method in class net.aksingh.java.api.owm.DailyForecastData.City
    -
     
    -
    hasCountryCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.City
    -
     
    -
    hasDateTime() - Method in class net.aksingh.java.api.owm.AbstractWeatherData
    -
    -
    Tells if the data for date and time of this weather is available or not.
    -
    -
    hasDateTimeText() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    hasDayTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    hasEveningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    hasForecast_List() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    hasForecast_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    hasGroundLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
     
    -
    hasHumidity() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Tells if the data for humidity of the city is available or not.
    -
    -
    hasHumidity() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    hasLatitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    -
    Tells if the data for latitude of the city is available or not.
    -
    -
    hasLongitude() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Coord
    -
    -
    Tells if the data for longitude of the city is available or not.
    -
    -
    hasMaximumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    hasMaxTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Tells if the data for maximum temperature of the city is available or not.
    -
    -
    hasMinimumTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    hasMinTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Tells if the data for minimum temperature of the city is available or not.
    -
    -
    hasMorningTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    hasNightTemperature() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast.Temperature
    -
     
    -
    hasPercentageOfClouds() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Clouds
    -
    -
    Tells if the data for percentage of all clouds is available or not.
    -
    -
    hasPercentageOfClouds() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    hasPod() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Sys
    -
     
    -
    hasPressure() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Tells if the data for pressure of the city is available or not.
    -
    -
    hasPressure() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    hasRain3Hours() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Rain
    -
     
    -
    hasResponseCode() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    hasResponseCode() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    hasResponseCode() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    hasResponseForecastCount() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    hasResponseForecastCount() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    hasResponseTime() - Method in class net.aksingh.java.api.owm.DailyForecastData
    -
     
    -
    hasResponseTime() - Method in class net.aksingh.java.api.owm.ForecastWeatherData
    -
     
    -
    hasSeaLevel() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
     
    -
    hasSunriseTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
     
    -
    hasSunsetTime() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Sys
    -
     
    -
    hasTemperature() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Tells if the data for temperature of the city is available or not.
    -
    -
    hasTempKF() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast.Main
    -
     
    -
    hasWeather_List() - Method in class net.aksingh.java.api.owm.CurrentWeatherData
    -
     
    -
    hasWeather_List() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    hasWeather_List() - Method in class net.aksingh.java.api.owm.ForecastWeatherData.Forecast
    -
     
    -
    hasWeatherCode() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Tells if the data for weather's code is available or not.
    -
    -
    hasWeatherDescription() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Tells if the data for weather's description is available or not.
    -
    -
    hasWeatherIconName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Tells if the data for name of weather's icon is available or not.
    -
    -
    hasWeatherName() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Tells if the data for weather's name is available or not.
    -
    -
    hasWindDegree() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Tells if the data for degree (degree gives direction) of wind - in the city is available or not.
    -
    -
    hasWindDegree() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    hasWindGust() - Method in class net.aksingh.java.api.owm.CurrentWeatherData.Wind
    -
     
    -
    hasWindSpeed() - Method in class net.aksingh.java.api.owm.AbstractWeatherData.Wind
    -
    -
    Tells if the data for speed of wind in the city is available or not.
    -
    -
    hasWindSpeed() - Method in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
     
    -
    humidity - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Main
    -
    -
    Humidity
    -
    -
    humidity - Variable in class net.aksingh.java.api.owm.DailyForecastData.Forecast
    -
    -
    Humidity
    -
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    -
    A B C D E F G H I J L M N O P R S T V W  +
    A C D F G H J N O T V  -

    I

    +

    O

    -
    icon - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    +
    OpenWeatherMap - Class in net.aksingh.java.api.owm
    -
    Weather icon
    -
    -
    id - Variable in class net.aksingh.java.api.owm.AbstractWeatherData.Weather
    -
    -
    Weather ID
    +
    Provides methods to get weather, forecast, and other data from + OpenWeatherMap.org
    +
    OpenWeatherMap(String) - Constructor for class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    OpenWeatherMap(OpenWeatherMap.OWM_URL, String) - Constructor for class net.aksingh.java.api.owm.OpenWeatherMap
    +
     
    +
    OpenWeatherMap.OWM_Response - Class in net.aksingh.java.api.owm
    +
     
    +
    OpenWeatherMap.OWM_Response(String) - Constructor for class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    OpenWeatherMap.OWM_Response(OpenWeatherMap.OWM_URL, String) - Constructor for class net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
    +
     
    +
    OpenWeatherMap.OWM_URL - Enum in net.aksingh.java.api.owm
    +
     
    -A B C D E F G H I J L M N O P R S T V W 
    +A C D F G H J N O T V 
    diff --git a/javadoc/index.html b/javadoc/index.html index 77fec28..4e6de41 100644 --- a/javadoc/index.html +++ b/javadoc/index.html @@ -2,15 +2,49 @@ - + -OpenWeatherMap.org JAPIs +OWM JAPIs Docs @@ -62,13 +62,13 @@ @@ -107,9 +107,10 @@
    public abstract static class AbstractWeatherData.Clouds
     extends java.lang.Object
    This class provides default implementations for Clouds. - Standard behaviors like the has and the get - methods for information about clouds (for example, percentage of - clouds, etc.) are defined here.
    + Standard behaviors like the has and the get + methods for information about clouds (for example, percentage of clouds, + etc.) are defined here. +

    Since:
    2.5.0.1
    Version:
    @@ -122,34 +123,6 @@ extends java.lang.Object
    Version:
    2013/07/28
    Author:
    @@ -120,45 +121,6 @@ extends java.lang.Object
    @@ -371,9 +288,10 @@ extends java.lang.Object
  • getLongitude

    public float getLongitude()
    -
    Returns data for longitude of the city.
    -
    Returns:
    Longitude of the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for longitude of the city. +

    +
    Returns:
    Longitude of the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -427,13 +345,13 @@ extends java.lang.Object
    diff --git a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Main.html b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Main.html index 0706ad8..5e1de9d 100644 --- a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Main.html +++ b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Main.html @@ -2,16 +2,16 @@ - + -AbstractWeatherData.Main (OpenWeatherMap.org JAPIs) - +AbstractWeatherData.Main (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -107,9 +107,10 @@
    public abstract static class AbstractWeatherData.Main
     extends java.lang.Object
    This class provides default implementations for Main. - Standard behaviors like the has and the get - methods for information about main weather elements (for example, - temperature, pressure, humidity, etc.) are defined here.
    + Standard behaviors like the has and the get + methods for information about main weather elements (for example, + temperature, pressure, humidity, etc.) are defined here. +

    Since:
    2.5.0.1
    Version:
    @@ -122,81 +123,6 @@ extends java.lang.Object
    @@ -508,8 +331,10 @@ extends java.lang.Object
  • hasPressure

    public boolean hasPressure()
    -
    Tells if the data for pressure of the city is available or not.
    -
    Returns:
    true if data available, otherwise false
    +
    Tells if the data for pressure of the city is available or not. +

    +
    Returns:
    true if data available, otherwise + false
  • @@ -519,8 +344,10 @@ extends java.lang.Object
  • hasHumidity

    public boolean hasHumidity()
    -
    Tells if the data for humidity of the city is available or not.
    -
    Returns:
    true if data available, otherwise false
    +
    Tells if the data for humidity of the city is available or not. +

    +
    Returns:
    true if data available, otherwise + false
  • @@ -530,9 +357,10 @@ extends java.lang.Object
  • getTemperature

    public float getTemperature()
    -
    Returns data for temperature of the city.
    -
    Returns:
    Temperature of the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for temperature of the city. +

    +
    Returns:
    Temperature of the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -542,9 +370,10 @@ extends java.lang.Object
  • getMinTemperature

    public float getMinTemperature()
    -
    Returns data for minimum temperature of the city.
    -
    Returns:
    Minimum temperature of the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for minimum temperature of the city. +

    +
    Returns:
    Minimum temperature of the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -554,9 +383,10 @@ extends java.lang.Object
  • getMaxTemperature

    public float getMaxTemperature()
    -
    Returns data for maximum temperature of the city.
    -
    Returns:
    Maximum temperature of the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for maximum temperature of the city. +

    +
    Returns:
    Maximum temperature of the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -566,9 +396,10 @@ extends java.lang.Object
  • getPressure

    public float getPressure()
    -
    Returns data for pressure of the city.
    -
    Returns:
    Pressure of the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for pressure of the city. +

    +
    Returns:
    Pressure of the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -578,9 +409,10 @@ extends java.lang.Object
  • getHumidity

    public float getHumidity()
    -
    Returns data for humidity of the city.
    -
    Returns:
    Humidity of the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for humidity of the city. +

    +
    Returns:
    Humidity of the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -634,13 +466,13 @@ extends java.lang.Object
    diff --git a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Weather.html b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Weather.html index e418063..9e1f2dd 100644 --- a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Weather.html +++ b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Weather.html @@ -2,16 +2,16 @@ - + -AbstractWeatherData.Weather (OpenWeatherMap.org JAPIs) - +AbstractWeatherData.Weather (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -107,9 +107,10 @@
    public abstract static class AbstractWeatherData.Weather
     extends java.lang.Object
    This class provides default implementations for Weather. - Standard behaviors like the has and the get - methods for information about weather (for example, id, name, - description, icon, etc.) are defined here.
    + Standard behaviors like the has and the get + methods for information about weather (for example, id, name, + description, icon, etc.) are defined here. +

    Since:
    2.5.0.1
    Version:
    @@ -122,69 +123,6 @@ extends java.lang.Object
    @@ -462,8 +315,10 @@ extends java.lang.Object
  • hasWeatherIconName

    public boolean hasWeatherIconName()
    -
    Tells if the data for name of weather's icon is available or not.
    -
    Returns:
    true if data available, otherwise false
    +
    Tells if the data for name of weather's icon is available or not. +

    +
    Returns:
    true if data available, otherwise + false
  • @@ -473,9 +328,10 @@ extends java.lang.Object
  • getWeatherCode

    public int getWeatherCode()
    -
    Returns data for code for weather of the city.
    -
    Returns:
    Code for weather of the city if available, - otherwise Integer.MIN_VALUE
    +
    Returns data for code for weather of the city. +

    +
    Returns:
    Code for weather of the city if available, otherwise + Integer.MIN_VALUE
  • @@ -485,9 +341,10 @@ extends java.lang.Object
  • getWeatherName

    public java.lang.String getWeatherName()
    -
    Returns data for name for weather of the city.
    -
    Returns:
    Name for weather of the city if available, - otherwise null
    +
    Returns data for name for weather of the city. +

    +
    Returns:
    Name for weather of the city if available, otherwise + null
  • @@ -497,9 +354,10 @@ extends java.lang.Object
  • getWeatherDescription

    public java.lang.String getWeatherDescription()
    -
    Returns data for description for weather of the city.
    -
    Returns:
    Description for weather of the city if available, - otherwise null
    +
    Returns data for description for weather of the city. +

    +
    Returns:
    Description for weather of the city if available, otherwise + null
  • @@ -509,9 +367,10 @@ extends java.lang.Object
  • getWeatherIconName

    public java.lang.String getWeatherIconName()
    -
    Returns data for name of icon for weather of the city.
    -
    Returns:
    Name of icon for weather of the city if available, - otherwise null
    +
    Returns data for name of icon for weather of the city. +

    +
    Returns:
    Name of icon for weather of the city if available, otherwise + null
  • @@ -565,13 +424,13 @@ extends java.lang.Object
    diff --git a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Wind.html b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Wind.html index 0c9a434..4ab94ed 100644 --- a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Wind.html +++ b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.Wind.html @@ -2,16 +2,16 @@ - + -AbstractWeatherData.Wind (OpenWeatherMap.org JAPIs) - +AbstractWeatherData.Wind (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -107,9 +107,10 @@
    public abstract static class AbstractWeatherData.Wind
     extends java.lang.Object
    This class provides default implementations for Wind. - Standard behaviors like the has and the get - methods for information about wind (for example, speed, degree, - etc.) are defined here.
    + Standard behaviors like the has and the get + methods for information about wind (for example, speed, degree, etc.) are + defined here. +

    Since:
    2.5.0.1
    Version:
    @@ -122,45 +123,6 @@ extends java.lang.Object
    @@ -375,9 +292,10 @@ extends java.lang.Object
  • getWindDegree

    public float getWindDegree()
    -
    Returns data for degree of wind in the city.
    -
    Returns:
    Degree of wind in the city if available, - otherwise Float.NaN, i.e., Not a Number.
    +
    Returns data for degree of wind in the city. +

    +
    Returns:
    Degree of wind in the city if available, otherwise + Float.NaN, i.e., Not a Number.
  • @@ -431,13 +349,13 @@ extends java.lang.Object
    diff --git a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.html b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.html index fd035f7..96d39d1 100644 --- a/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.html +++ b/javadoc/net/aksingh/java/api/owm/AbstractWeatherData.html @@ -2,16 +2,16 @@ - + -AbstractWeatherData (OpenWeatherMap.org JAPIs) - +AbstractWeatherData (OWM JAPIs Docs) + @@ -102,11 +102,13 @@
    public abstract class AbstractWeatherData
     extends java.lang.Object
    -
    This class provides default implementations for CurrentWeatherData - and ForecastWeatherData classes. - Standard behaviors like the has and the get - methods for information about weather or forecast (for example, - temperature, pressure, weather, clouds, wind, etc.) are defined here.
    +
    This class provides default implementations for + CurrentWeatherData and + ForecastWeatherData classes. Standard + behaviors like the has and the get methods for + information about weather or forecast (for example, temperature, pressure, + weather, clouds, wind, etc.) are defined here. +

    Since:
    2.5.0.1
    Version:
    @@ -177,29 +179,17 @@ extends java.lang.Object Field and Description -private java.util.Date -dateTime -
    Date and time of the weather.
    - - - protected java.lang.String JSON_CLOUDS
    Key for JSON object - Clouds
    - + protected java.lang.String JSON_COORD
    Key for JSON object - Coordinates (Geographic coordinates)
    - -private java.lang.String -JSON_DATE_TIME -
    Key for JSON variable Date-Time (date & time of the weather)
    - - protected java.lang.String JSON_MAIN @@ -239,9 +229,7 @@ extends java.lang.Object AbstractWeatherData(org.json.JSONObject jsonObj) -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    @@ -340,7 +328,7 @@ extends java.lang.Object -
      +
      • JSON_WIND

        protected final java.lang.String JSON_WIND
        @@ -348,28 +336,6 @@ extends java.lang.Object
        See Also:
        Constant Field Values
      - - - -
        -
      • -

        JSON_DATE_TIME

        -
        private final java.lang.String JSON_DATE_TIME
        -
        Key for JSON variable Date-Time (date & time of the weather)
        -
        See Also:
        Constant Field Values
        -
      • -
      - - - -
        -
      • -

        dateTime

        -
        private final java.util.Date dateTime
        -
        Date and time of the weather. This is answer for the question that - when is/will be this weather.
        -
      • -
    @@ -386,8 +352,9 @@ extends java.lang.Object

    AbstractWeatherData

    public AbstractWeatherData()
    Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -402,8 +369,9 @@ extends java.lang.Object

    AbstractWeatherData

    public AbstractWeatherData(org.json.JSONObject jsonObj)
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing weather data
    @@ -422,7 +390,8 @@ extends java.lang.Object
  • hasDateTime

    public boolean hasDateTime()
    -
    Tells if the data for date and time of this weather is available or not.
    +
    Tells if the data for date and time of this weather is available or not. +

    Returns:
    true if data available, otherwise false
  • @@ -433,9 +402,10 @@ extends java.lang.Object
  • getDateTime

    public java.util.Date getDateTime()
    -
    Returns data for date and time of this weather.
    -
    Returns:
    Date and time (in object of Date) if available, - otherwise null
    +
    Returns data for date and time of this weather. +

    +
    Returns:
    Date and time (in object of Date) if available, + otherwise null
  • diff --git a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Clouds.html b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Clouds.html index dcd7fe1..16ab0bc 100644 --- a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Clouds.html +++ b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Clouds.html @@ -2,16 +2,16 @@ - + -CurrentWeatherData.Clouds (OpenWeatherMap.org JAPIs) - +CurrentWeatherData.Clouds (OWM JAPIs Docs) + @@ -107,22 +107,24 @@
    public static class CurrentWeatherData.Clouds
     extends AbstractWeatherData.Clouds
    -
    Parses data about clouds (from the JSON data) and provides methods - to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about clouds (from the JSON data) and provides methods to + get/access the information. This class provides has and + get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -153,9 +155,7 @@ extends CurrentWeatherData.Clouds(org.json.JSONObject jsonObj) -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    @@ -203,8 +203,9 @@ extends Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -219,8 +220,9 @@ extends
    Parameterized constructor - - Initializes variables from values from the given JSON object.

    +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing data about clouds
    diff --git a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Coord.html b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Coord.html index 8d91a32..a1c519e 100644 --- a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Coord.html +++ b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Coord.html @@ -2,16 +2,16 @@ - + -CurrentWeatherData.Coord (OpenWeatherMap.org JAPIs) - +CurrentWeatherData.Coord (OWM JAPIs Docs) + @@ -107,22 +107,24 @@
    public static class CurrentWeatherData.Coord
     extends AbstractWeatherData.Coord
    -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information. This class provides + has and get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -153,9 +155,7 @@ extends CurrentWeatherData.Coord(org.json.JSONObject jsonObj) -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    @@ -203,8 +203,9 @@ extends Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -219,8 +220,9 @@ extends
    Parameterized constructor - - Initializes variables from values from the given JSON object.

    +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing data about coordinates
    diff --git a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Main.html b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Main.html index 416f838..2e2e55d 100644 --- a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Main.html +++ b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Main.html @@ -2,16 +2,16 @@ - + -CurrentWeatherData.Main (OpenWeatherMap.org JAPIs) - +CurrentWeatherData.Main (OWM JAPIs Docs) + @@ -107,22 +107,24 @@
    public static class CurrentWeatherData.Main
     extends AbstractWeatherData.Main
    -
    Parses data about main weather elements (from the JSON data) and - provides methods to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about main weather elements (from the JSON data) and provides + methods to get/access the information. This class provides + has and get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -153,9 +155,7 @@ extends CurrentWeatherData.Main(org.json.JSONObject jsonObj) -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    @@ -203,8 +203,9 @@ extends Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -219,10 +220,11 @@ extends
    Parameterized constructor - - Initializes variables from values from the given JSON object. -

    Parameters:
    jsonObj - JSON object containing data about main - weather elements (temperature, pressure, etc.)
    +

    + Initializes variables from values from the given JSON object. +

    +

    Parameters:
    jsonObj - JSON object containing data about main weather + elements (temperature, pressure, etc.)
    diff --git a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Rain.html b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Rain.html index 0531bef..9b05a1e 100644 --- a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Rain.html +++ b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.Rain.html @@ -2,16 +2,16 @@ - + -CurrentWeatherData.Rain (OpenWeatherMap.org JAPIs) - +CurrentWeatherData.Rain (OWM JAPIs Docs) + @@ -62,13 +62,13 @@
    @@ -102,22 +102,24 @@
    public static class CurrentWeatherData.Rain
     extends java.lang.Object
    -
    Parses data about rain (from the JSON data) and provides methods - to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about rain (from the JSON data) and provides methods to + get/access the information. This class provides has and + get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -130,33 +132,6 @@ extends java.lang.Object
    +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing data about wind
    @@ -372,13 +318,13 @@ extends
  • Summary: 
  • Nested | 
  • -
  • Field | 
  • +
  • Field | 
  • Constr | 
  • Method
  • diff --git a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.html b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.html index cc62158..5fef1d3 100644 --- a/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.html +++ b/javadoc/net/aksingh/java/api/owm/CurrentWeatherData.html @@ -2,16 +2,16 @@ - + -CurrentWeatherData (OpenWeatherMap.org JAPIs) - +CurrentWeatherData (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -103,22 +103,23 @@
    public class CurrentWeatherData
     extends AbstractWeatherData
    -
    Parses current weather data (from the JSON data) and provides methods - to get/access the information about current weather. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per - following basis:
    +

    Parses current weather data (from the JSON data) and provides methods to + get/access the information about current weather. This class provides + has and get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., if + the data was available (successfully downloaded) and was parsed correctly. +

    +

    + get methods can be used to access the data, if the data exists, + otherwise get methods will give value as per following + basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -146,36 +147,36 @@ extends static class  CurrentWeatherData.Clouds -
    Parses data about clouds (from the JSON data) and provides methods - to get/access the information.
    +
    Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
    static class  CurrentWeatherData.Coord -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
    static class  CurrentWeatherData.Main -
    Parses data about main weather elements (from the JSON data) and - provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and provides + methods to get/access the information.
    static class  CurrentWeatherData.Rain -
    Parses data about rain (from the JSON data) and provides methods - to get/access the information.
    +
    Parses data about rain (from the JSON data) and provides methods to + get/access the information.
    static class  CurrentWeatherData.Sys -
    Parses data about country, sunrise, and sunset (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about country, sunrise, and sunset (from the JSON data) and + provides methods to get/access the information.
    @@ -187,8 +188,8 @@ extends static class  CurrentWeatherData.Wind -
    Parses data about winds (from the JSON data) and provides methods - to get/access the information.
    +
    Parses data about winds (from the JSON data) and provides methods to + get/access the information.
    @@ -200,109 +201,6 @@ extends -Fields  - -Modifier and Type -Field and Description - - -private java.lang.String -base -
    Base
    - - - -private long -cityID -
    City code (ID)
    - - - -private java.lang.String -cityName -
    City name
    - - - -private CurrentWeatherData.Clouds -clouds  - - -private CurrentWeatherData.Coord -coord  - - -private java.lang.String -JSON_BASE -
    Key for JSON variable Base
    - - - -private java.lang.String -JSON_CITY_ID -
    Key for JSON variable City code (ID)
    - - - -private java.lang.String -JSON_CITY_NAME -
    Key for JSON variable City name
    - - - -private java.lang.String -JSON_RAIN -
    Key for JSON object - Rain
    - - - -private java.lang.String -JSON_RESPONSE_CODE -
    Key for JSON variable Response code
    - - - -private java.lang.String -JSON_SYS -
    Key for JSON object - Sys
    - - - -private CurrentWeatherData.Main -main  - - -private CurrentWeatherData.Rain -rain  - - -private int -responseCode -
    Response code
    - - - -private CurrentWeatherData.Sys -sys  - - -private java.util.List<CurrentWeatherData.Weather> -weatherList -
    List of weather information (code, name, etc.)
    - - - -private int -weatherListCount -
    Count (number) of elements in list of weather information
    - - - -private CurrentWeatherData.Wind -wind  - - diff --git a/javadoc/net/aksingh/java/api/owm/DailyForecastData.City.html b/javadoc/net/aksingh/java/api/owm/DailyForecastData.City.html index 747432d..d018497 100644 --- a/javadoc/net/aksingh/java/api/owm/DailyForecastData.City.html +++ b/javadoc/net/aksingh/java/api/owm/DailyForecastData.City.html @@ -2,16 +2,16 @@ - + -DailyForecastData.City (OpenWeatherMap.org JAPIs) - +DailyForecastData.City (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -102,23 +102,25 @@
    public static class DailyForecastData.City
     extends java.lang.Object
    -
    Parses data about city (from the JSON data) - and provides methods to get/access the information. - For example, city name, coordinates, country name, population, etc. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about city (from the JSON data) and provides methods to + get/access the information. For example, city name, coordinates, country + name, population, etc. This class provides has and + get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -146,81 +148,8 @@ extends java.lang.Object static class  DailyForecastData.City.Coord -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    - - - - - - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      private longcityID -
      City code (ID)
      -
      private java.lang.StringcityName -
      City name
      -
      private DailyForecastData.City.Coordcoord 
      private java.lang.StringcountryCode -
      Country code of city
      -
      private java.lang.StringJSON_CITY_COORD -
      Key for JSON object - Coordinates
      -
      private java.lang.StringJSON_CITY_COUNTRY_CODE -
      Key for JSON variable Country code of city
      -
      private java.lang.StringJSON_CITY_ID -
      Key for JSON variable City code (ID)
      -
      private java.lang.StringJSON_CITY_NAME -
      Key for JSON variable City name
      -
      private java.lang.StringJSON_CITY_POPULATION -
      Key for JSON variable Population of city
      -
      private longpopulation -
      Population of city
      +
      Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
      @@ -244,9 +173,7 @@ extends java.lang.Object DailyForecastData.City(org.json.JSONObject jsonObj) -
      Parameterized constructor - - Initializes variables from values from the given JSON object.
      +
      Parameterized constructor
      @@ -316,118 +243,6 @@ extends java.lang.Object
      @@ -236,9 +202,7 @@ extends java.lang.Object DailyForecastData.Forecast.Temperature(org.json.JSONObject jsonObj) -
      Parameterized constructor - - Initializes variables from values from the given JSON object.
      +
      Parameterized constructor
      @@ -384,7 +348,7 @@ extends java.lang.Object -
        +
        • JSON_TEMP_MORNING

          public final java.lang.String JSON_TEMP_MORNING
          @@ -392,66 +356,6 @@ extends java.lang.Object
          See Also:
          Constant Field Values
        - - - -
          -
        • -

          dayTemp

          -
          private final float dayTemp
          -
          Day temperature
          -
        • -
        - - - -
          -
        • -

          minTemp

          -
          private final float minTemp
          -
          Minimum temperature
          -
        • -
        - - - -
          -
        • -

          maxTemp

          -
          private final float maxTemp
          -
          Maximum temperature
          -
        • -
        - - - -
          -
        • -

          nightTemp

          -
          private final float nightTemp
          -
          Night temperature
          -
        • -
        - - - -
          -
        • -

          eveTemp

          -
          private final float eveTemp
          -
          Evening temperature
          -
        • -
        - - - -
          -
        • -

          mornTemp

          -
          private final float mornTemp
          -
          Morning temperature
          -
        • -
      @@ -468,8 +372,9 @@ extends java.lang.Object

      DailyForecastData.Forecast.Temperature

      public DailyForecastData.Forecast.Temperature()
      Non-parameterized constructor - -

      Initializes variables as per following basis:
      +

      +

      + Initializes variables as per following basis:
      Boolean: false
      Integral: Minimum value (MIN_VALUE)
      Floating point: Not a number (NaN)
      @@ -484,8 +389,9 @@ extends java.lang.Object

      DailyForecastData.Forecast.Temperature

      public DailyForecastData.Forecast.Temperature(org.json.JSONObject jsonObj)
      Parameterized constructor - - Initializes variables from values from the given JSON object.
      +

      + Initializes variables from values from the given JSON object. +

      Parameters:
      jsonObj - JSON object containing data about temperature
    diff --git a/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.Weather.html b/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.Weather.html index 01d2d30..9c2ba2d 100644 --- a/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.Weather.html +++ b/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.Weather.html @@ -2,16 +2,16 @@ - + -DailyForecastData.Forecast.Weather (OpenWeatherMap.org JAPIs) - +DailyForecastData.Forecast.Weather (OWM JAPIs Docs) + @@ -107,23 +107,25 @@
    public static class DailyForecastData.Forecast.Weather
     extends AbstractWeatherData.Weather
    -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information. - For example, weather id, name, etc. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about weather (from the JSON data) and provides methods + to get/access the information. For example, weather id, name, etc. + This class provides has and get methods to + access the information. +

    +

    + has methods can be used to check if the data exists, + i.e., if the data was available (successfully downloaded) and was + parsed correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -154,9 +156,7 @@ extends DailyForecastData.Forecast.Weather(org.json.JSONObject jsonObj) -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    @@ -204,8 +204,9 @@ extends Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -220,8 +221,9 @@ extends
    Parameterized constructor - - Initializes variables from values from the given JSON object. +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing data about weather
    diff --git a/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.html b/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.html index b384b81..e1e2b27 100644 --- a/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.html +++ b/javadoc/net/aksingh/java/api/owm/DailyForecastData.Forecast.html @@ -2,16 +2,16 @@ - + -DailyForecastData.Forecast (OpenWeatherMap.org JAPIs) - +DailyForecastData.Forecast (OWM JAPIs Docs) + @@ -107,22 +107,24 @@
    public static class DailyForecastData.Forecast
     extends AbstractWeatherData
    -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about forecasts (from the JSON data) and provides methods to + get/access the information. This class provides has and + get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -150,15 +152,15 @@ extends static class  DailyForecastData.Forecast.Temperature -
    Parses data about temperature (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about temperature (from the JSON data) and provides + methods to get/access the information.
    static class  DailyForecastData.Forecast.Weather -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about weather (from the JSON data) and provides methods + to get/access the information.
    @@ -184,87 +186,11 @@ extends Field and Description -private float -cloudsPercent -
    Percentage of clouds
    - - - -private float -humidity -
    Humidity
    - - - -private java.lang.String -JSON_FORECAST_CLOUDS -
    Key for JSON variable Percentage of clouds
    - - - -private java.lang.String -JSON_FORECAST_HUMIDITY -
    Key for JSON variable Humidity
    - - - -private java.lang.String -JSON_FORECAST_PRESSURE -
    Key for JSON variable Pressure
    - - - -private java.lang.String -JSON_FORECAST_WIND_DEGREE -
    Key for JSON variable Wind degree
    - - - -private java.lang.String -JSON_FORECAST_WIND_SPEED -
    Key for JSON variable Wind speed
    - - - java.lang.String JSON_TEMP
    Key for JSON object - Temperature
    - -private float -pressure -
    Pressure
    - - - -private DailyForecastData.Forecast.Temperature -temp  - - -private java.util.List<DailyForecastData.Forecast.Weather> -weatherList -
    List of weather information (code, name, etc.)
    - - - -private int -weatherListCount -
    Count (number) of elements in list of weather information
    - - - -private float -windDegree -
    Wind degree
    - - - -private float -windSpeed -
    Wind speed
    - -
    - - - -
      -
    • -

      JSON_FORECAST_PRESSURE

      -
      private final java.lang.String JSON_FORECAST_PRESSURE
      -
      Key for JSON variable Pressure
      -
      See Also:
      Constant Field Values
      -
    • -
    - - - -
      -
    • -

      JSON_FORECAST_HUMIDITY

      -
      private final java.lang.String JSON_FORECAST_HUMIDITY
      -
      Key for JSON variable Humidity
      -
      See Also:
      Constant Field Values
      -
    • -
    - - - -
      -
    • -

      JSON_FORECAST_WIND_SPEED

      -
      private final java.lang.String JSON_FORECAST_WIND_SPEED
      -
      Key for JSON variable Wind speed
      -
      See Also:
      Constant Field Values
      -
    • -
    - - - -
      -
    • -

      JSON_FORECAST_WIND_DEGREE

      -
      private final java.lang.String JSON_FORECAST_WIND_DEGREE
      -
      Key for JSON variable Wind degree
      -
      See Also:
      Constant Field Values
      -
    • -
    - - - -
      -
    • -

      JSON_FORECAST_CLOUDS

      -
      private final java.lang.String JSON_FORECAST_CLOUDS
      -
      Key for JSON variable Percentage of clouds
      -
      See Also:
      Constant Field Values
      -
    • -
    - - - -
      -
    • -

      pressure

      -
      private final float pressure
      -
      Pressure
      -
    • -
    - - - -
      -
    • -

      humidity

      -
      private final float humidity
      -
      Humidity
      -
    • -
    - - - -
      -
    • -

      windSpeed

      -
      private final float windSpeed
      -
      Wind speed
      -
    • -
    - - - -
      -
    • -

      windDegree

      -
      private final float windDegree
      -
      Wind degree
      -
    • -
    - - - -
      -
    • -

      cloudsPercent

      -
      private final float cloudsPercent
      -
      Percentage of clouds
      -
    • -
    - - - - - - - - - - - -
      -
    • -

      weatherListCount

      -
      private final int weatherListCount
      -
      Count (number) of elements in list of weather information
      -
    • -
    @@ -559,8 +349,9 @@ extends Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -575,8 +366,9 @@ extends
    Parameterized constructor - - Initializes variables from values from the given JSON object. +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing data about forecasts
    diff --git a/javadoc/net/aksingh/java/api/owm/DailyForecastData.html b/javadoc/net/aksingh/java/api/owm/DailyForecastData.html index 7228912..76267cc 100644 --- a/javadoc/net/aksingh/java/api/owm/DailyForecastData.html +++ b/javadoc/net/aksingh/java/api/owm/DailyForecastData.html @@ -2,16 +2,16 @@ - + -DailyForecastData (OpenWeatherMap.org JAPIs) - +DailyForecastData (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -98,23 +98,25 @@
    public class DailyForecastData
     extends java.lang.Object
    -
    Parses daily forecast data (from the JSON data) and provides methods - to get/access the information about daily forecasted weather. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per - following basis:
    +

    Parses daily forecast data (from the JSON data) and provides methods to + get/access the information about daily forecasted weather. This class + provides has and get methods to access the + information. +

    +

    + has methods can be used to check if the data exists, i.e., if + the data was available (successfully downloaded) and was parsed correctly. +

    +

    + get methods can be used to access the data, if the data exists, + otherwise get methods will give value as per following + basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    Objects: Data initialized with default/non-parameterized constructor
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -142,94 +144,15 @@ extends java.lang.Object static class  DailyForecastData.City -
    Parses data about city (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about city (from the JSON data) and provides methods to + get/access the information.
    static class  DailyForecastData.Forecast -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
    - - - - - - - @@ -614,13 +414,13 @@ extends java.lang.Object diff --git a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.Coord.html b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.Coord.html index e09d23f..771b86b 100644 --- a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.Coord.html +++ b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.Coord.html @@ -2,16 +2,16 @@ - + -ForecastWeatherData.City.Coord (OpenWeatherMap.org JAPIs) - +ForecastWeatherData.City.Coord (OWM JAPIs Docs) + @@ -107,22 +107,25 @@
    public static class ForecastWeatherData.City.Coord
     extends AbstractWeatherData.Coord
    -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information. This class provides + has and get methods to access the + information. +

    +

    + has methods can be used to check if the data exists, + i.e., if the data was available (successfully downloaded) and was + parsed correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -153,9 +156,7 @@ extends ForecastWeatherData.City.Coord(org.json.JSONObject jsonObj) -
    Parameterized constructor - - Initializes variables from values from the given JSON object.
    +
    Parameterized constructor
    @@ -203,8 +204,9 @@ extends Non-parameterized constructor - -

    Initializes variables as per following basis:
    +

    +

    + Initializes variables as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    @@ -219,8 +221,9 @@ extends
    Parameterized constructor - - Initializes variables from values from the given JSON object. +

    + Initializes variables from values from the given JSON object. +

    Parameters:
    jsonObj - JSON object containing data about clouds
    diff --git a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.html b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.html index c07cb6c..46b6f74 100644 --- a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.html +++ b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.City.html @@ -2,16 +2,16 @@ - + -ForecastWeatherData.City (OpenWeatherMap.org JAPIs) - +ForecastWeatherData.City (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -102,23 +102,25 @@
    public static class ForecastWeatherData.City
     extends java.lang.Object
    -
    Parses data about city (from the JSON data) - and provides methods to get/access the information. - For example, city name, coordinates, country name, population, etc. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about city (from the JSON data) and provides methods to + get/access the information. For example, city name, coordinates, country + name, population, etc. This class provides has and + get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -146,81 +148,8 @@ extends java.lang.Object static class  ForecastWeatherData.City.Coord -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    - - - - - - - diff --git a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.Main.html b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.Main.html index 0701ba6..dd34cbf 100644 --- a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.Main.html +++ b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.Main.html @@ -2,16 +2,16 @@ - + -ForecastWeatherData.Forecast.Main (OpenWeatherMap.org JAPIs) - +ForecastWeatherData.Forecast.Main (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -107,23 +107,26 @@
    public static class ForecastWeatherData.Forecast.Main
     extends AbstractWeatherData.Main
    -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information. - For example, temperature, pressure, sea level, etc. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information. For example, + temperature, pressure, sea level, etc. This class provides + has and get methods to access the + information. +

    +

    + has methods can be used to check if the data exists, + i.e., if the data was available (successfully downloaded) and was + parsed correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -136,57 +139,6 @@ extends diff --git a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.html b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.html index 4bb7a01..9833210 100644 --- a/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.html +++ b/javadoc/net/aksingh/java/api/owm/ForecastWeatherData.Forecast.html @@ -2,16 +2,16 @@ - + -ForecastWeatherData.Forecast (OpenWeatherMap.org JAPIs) - +ForecastWeatherData.Forecast (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -107,22 +107,24 @@
    public static class ForecastWeatherData.Forecast
     extends AbstractWeatherData
    -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information. - This class provides has and get methods - to access the information. - -

    has methods can be used to check - if the data exists, i.e., if the data was available (successfully - downloaded) and was parsed correctly. - -

    get methods can be used to access the data, if the data - exists, otherwise get methods will give value as per +

    Parses data about forecasts (from the JSON data) and provides methods to + get/access the information. This class provides has and + get methods to access the information. +

    +

    + has methods can be used to check if the data exists, i.e., + if the data was available (successfully downloaded) and was parsed + correctly. +

    +

    + get methods can be used to access the data, if the data + exists, otherwise get methods will give value as per following basis:
    Boolean: false
    Integral: Minimum value (MIN_VALUE)
    Floating point: Not a number (NaN)
    - Others: null

    + Others: null
    +

    Since:
    2.5.0.1
    Version:
    @@ -150,36 +152,36 @@ extends static class  ForecastWeatherData.Forecast.Clouds -
    Parses data about clouds (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
    static class  ForecastWeatherData.Forecast.Main -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
    static class  ForecastWeatherData.Forecast.Sys -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
    static class  ForecastWeatherData.Forecast.Weather -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about weather (from the JSON data) and provides methods + to get/access the information.
    static class  ForecastWeatherData.Forecast.Wind -
    Parses data about wind (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about wind (from the JSON data) and provides methods to + get/access the information.
    @@ -198,59 +200,6 @@ extends -Fields  - -Modifier and Type -Field and Description - - -private ForecastWeatherData.Forecast.Clouds -clouds  - - -private java.lang.String -dateTimeText -
    Date time text
    - - - -private java.lang.String -JSON_DATE_TIME_TEXT -
    Key for JSON variable Date time text
    - - - -private java.lang.String -JSON_SYS -
    Key for JSON object - Sys (pod, etc.)
    - - - -private ForecastWeatherData.Forecast.Main -main  - - -private ForecastWeatherData.Forecast.Sys -sys  - - -private java.util.List<ForecastWeatherData.Forecast.Weather> -weatherList -
    List of weather information (code, name, etc.)
    - - - -private int -weatherListCount -
    Count (number) of elements in list of weather information
    - - - -private ForecastWeatherData.Forecast.Wind -wind  - - - - @@ -614,13 +413,13 @@ extends java.lang.Object diff --git a/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_Response.html b/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_Response.html index 6ff51e9..78861ba 100644 --- a/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_Response.html +++ b/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_Response.html @@ -2,16 +2,16 @@ - + -OpenWeatherMap.OWM_Response (OpenWeatherMap.org JAPIs) - +OpenWeatherMap.OWM_Response (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -108,33 +108,6 @@ extends java.lang.Object
    • - -
      • @@ -242,41 +215,6 @@ extends java.lang.Object
        • - -
            -
          • - - -

            Field Detail

            - - - -
              -
            • -

              OWM_MODE_VALUE

              -
              private final java.lang.String OWM_MODE_VALUE
              -
            • -
            - - - -
              -
            • -

              OWM_UNITS_VALUE

              -
              private final java.lang.String OWM_UNITS_VALUE
              -
            • -
            - - - -
              -
            • -

              OWM_APPID_VALUE

              -
              private final java.lang.String OWM_APPID_VALUE
              -
            • -
            -
          • -
          • @@ -539,13 +477,13 @@ extends java.lang.Object diff --git a/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_URL.html b/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_URL.html index 4802863..9d2418b 100644 --- a/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_URL.html +++ b/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.OWM_URL.html @@ -2,16 +2,16 @@ - + -OpenWeatherMap.OWM_URL (OpenWeatherMap.org JAPIs) - +OpenWeatherMap.OWM_URL (OWM JAPIs Docs) + @@ -63,13 +63,13 @@
          • Summary: 
          • Nested | 
          • Enum Constants | 
          • -
          • Field | 
          • +
          • Field | 
          • Method
        @@ -179,25 +179,6 @@ extends java.lang.Enum< -
      • - - -

        Field Summary

        - - - - - - - - - - -
        Fields 
        Modifier and TypeField and Description
        private java.lang.Stringvalue 
        -
      • -
    - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        value

        -
        private final java.lang.String value
        -
      • -
      -
    • -
    @@ -527,13 +492,13 @@ with the specified name
  • Summary: 
  • Nested | 
  • Enum Constants | 
  • -
  • Field | 
  • +
  • Field | 
  • Method
  • diff --git a/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.html b/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.html index 12dba28..adf3f83 100644 --- a/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.html +++ b/javadoc/net/aksingh/java/api/owm/OpenWeatherMap.html @@ -2,16 +2,16 @@ - + -OpenWeatherMap (OpenWeatherMap.org JAPIs) - +OpenWeatherMap (OWM JAPIs Docs) + @@ -62,13 +62,13 @@ @@ -98,8 +98,9 @@
    public class OpenWeatherMap
     extends java.lang.Object
    -
    Provides methods to get weather, forecast, and other data from - OpenWeatherMap.org
    +
    Provides methods to get weather, forecast, and other data from + OpenWeatherMap.org +

    Since:
    2.5.0.1
    Version:
    @@ -135,27 +136,6 @@ extends java.lang.Object - -
    • @@ -275,24 +255,6 @@ extends java.lang.Object
      • - -
        • @@ -627,13 +589,13 @@ extends java.lang.Object diff --git a/javadoc/net/aksingh/java/api/owm/Tools.Convertor.html b/javadoc/net/aksingh/java/api/owm/Tools.Convertor.html index 202649f..01f980a 100644 --- a/javadoc/net/aksingh/java/api/owm/Tools.Convertor.html +++ b/javadoc/net/aksingh/java/api/owm/Tools.Convertor.html @@ -2,16 +2,16 @@ - + -Tools.Convertor (OpenWeatherMap.org JAPIs) - +Tools.Convertor (OWM JAPIs Docs) + @@ -102,8 +102,9 @@
          public static class Tools.Convertor
           extends java.lang.Object
          -
          Provides methods to do conversions. - For example, converting degree to direction, etc.
          +
          Provides methods to do conversions. For example, converting degree to + direction, etc. +

          Since:
          2.5.0.1
          Version:
          @@ -198,8 +199,11 @@ extends java.lang.Object

          convertDegree2Direction

          public java.lang.String convertDegree2Direction(float degree)
                                                    throws java.lang.IllegalArgumentException
          -
          Converts degree to direction.
          -
          Returns:
          Direction
          +
          Converts degree to direction. +

          +
          Parameters:
          degree -

          +
          Returns:
          Direction +

          Throws:
          java.lang.IllegalArgumentException - Degree should be between 0 and 360.
        • diff --git a/javadoc/net/aksingh/java/api/owm/Tools.Downloader.html b/javadoc/net/aksingh/java/api/owm/Tools.Downloader.html index d97be95..1fa8ec7 100644 --- a/javadoc/net/aksingh/java/api/owm/Tools.Downloader.html +++ b/javadoc/net/aksingh/java/api/owm/Tools.Downloader.html @@ -2,16 +2,16 @@ - + -Tools.Downloader (OpenWeatherMap.org JAPIs) - +Tools.Downloader (OWM JAPIs Docs) + @@ -37,7 +37,7 @@
        -
      • -
      -
      +
      No usage of net.aksingh.java.api.owm.OpenWeatherMap.OWM_Response
      diff --git a/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.OWM_URL.html b/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.OWM_URL.html index b1bbfbe..0a36a81 100644 --- a/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.OWM_URL.html +++ b/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.OWM_URL.html @@ -2,16 +2,16 @@ - + -Uses of Class net.aksingh.java.api.owm.OpenWeatherMap.OWM_URL (OpenWeatherMap.org JAPIs) - +Uses of Class net.aksingh.java.api.owm.OpenWeatherMap.OWM_URL (OWM JAPIs Docs) + diff --git a/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.html b/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.html index a8fe557..d285284 100644 --- a/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.html +++ b/javadoc/net/aksingh/java/api/owm/class-use/OpenWeatherMap.html @@ -2,16 +2,16 @@ - + -Uses of Class net.aksingh.java.api.owm.OpenWeatherMap (OpenWeatherMap.org JAPIs) - +Uses of Class net.aksingh.java.api.owm.OpenWeatherMap (OWM JAPIs Docs) + diff --git a/javadoc/net/aksingh/java/api/owm/class-use/Tools.Convertor.html b/javadoc/net/aksingh/java/api/owm/class-use/Tools.Convertor.html index cb5e751..0c2bb02 100644 --- a/javadoc/net/aksingh/java/api/owm/class-use/Tools.Convertor.html +++ b/javadoc/net/aksingh/java/api/owm/class-use/Tools.Convertor.html @@ -2,16 +2,16 @@ - + -Uses of Class net.aksingh.java.api.owm.Tools.Convertor (OpenWeatherMap.org JAPIs) - +Uses of Class net.aksingh.java.api.owm.Tools.Convertor (OWM JAPIs Docs) + diff --git a/javadoc/net/aksingh/java/api/owm/class-use/Tools.Downloader.html b/javadoc/net/aksingh/java/api/owm/class-use/Tools.Downloader.html index 681ddfe..3bad453 100644 --- a/javadoc/net/aksingh/java/api/owm/class-use/Tools.Downloader.html +++ b/javadoc/net/aksingh/java/api/owm/class-use/Tools.Downloader.html @@ -2,16 +2,16 @@ - + -Uses of Class net.aksingh.java.api.owm.Tools.Downloader (OpenWeatherMap.org JAPIs) - +Uses of Class net.aksingh.java.api.owm.Tools.Downloader (OWM JAPIs Docs) + diff --git a/javadoc/net/aksingh/java/api/owm/class-use/Tools.HTML.html b/javadoc/net/aksingh/java/api/owm/class-use/Tools.HTML.html deleted file mode 100644 index 91492ae..0000000 --- a/javadoc/net/aksingh/java/api/owm/class-use/Tools.HTML.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -Uses of Class net.aksingh.java.api.owm.Tools.HTML (OpenWeatherMap.org JAPIs) - - - - - - - - - - -
      -

      Uses of Class
      net.aksingh.java.api.owm.Tools.HTML

      -
      -
      No usage of net.aksingh.java.api.owm.Tools.HTML
      - - - - - - diff --git a/javadoc/net/aksingh/java/api/owm/class-use/Tools.html b/javadoc/net/aksingh/java/api/owm/class-use/Tools.html index c861c46..8b7938e 100644 --- a/javadoc/net/aksingh/java/api/owm/class-use/Tools.html +++ b/javadoc/net/aksingh/java/api/owm/class-use/Tools.html @@ -2,16 +2,16 @@ - + -Uses of Class net.aksingh.java.api.owm.Tools (OpenWeatherMap.org JAPIs) - +Uses of Class net.aksingh.java.api.owm.Tools (OWM JAPIs Docs) + diff --git a/javadoc/net/aksingh/java/api/owm/package-frame.html b/javadoc/net/aksingh/java/api/owm/package-frame.html index 02b0c9f..c9ede0f 100644 --- a/javadoc/net/aksingh/java/api/owm/package-frame.html +++ b/javadoc/net/aksingh/java/api/owm/package-frame.html @@ -2,10 +2,10 @@ - + -net.aksingh.java.api.owm (OpenWeatherMap.org JAPIs) - +net.aksingh.java.api.owm (OWM JAPIs Docs) + @@ -47,7 +47,6 @@
    • Tools
    • Tools.Convertor
    • Tools.Downloader
    • -
    • Tools.HTML

    Enums

      diff --git a/javadoc/net/aksingh/java/api/owm/package-summary.html b/javadoc/net/aksingh/java/api/owm/package-summary.html index 1d23993..abbbbdc 100644 --- a/javadoc/net/aksingh/java/api/owm/package-summary.html +++ b/javadoc/net/aksingh/java/api/owm/package-summary.html @@ -2,16 +2,16 @@ - + -net.aksingh.java.api.owm (OpenWeatherMap.org JAPIs) - +net.aksingh.java.api.owm (OWM JAPIs Docs) + @@ -78,8 +78,9 @@ AbstractWeatherData -
      This class provides default implementations for CurrentWeatherData - and ForecastWeatherData classes.
      +
      This class provides default implementations for + CurrentWeatherData and + ForecastWeatherData classes.
      @@ -115,43 +116,43 @@ CurrentWeatherData -
      Parses current weather data (from the JSON data) and provides methods - to get/access the information about current weather.
      +
      Parses current weather data (from the JSON data) and provides methods to + get/access the information about current weather.
      CurrentWeatherData.Clouds -
      Parses data about clouds (from the JSON data) and provides methods - to get/access the information.
      +
      Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
      CurrentWeatherData.Coord -
      Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
      CurrentWeatherData.Main -
      Parses data about main weather elements (from the JSON data) and - provides methods to get/access the information.
      +
      Parses data about main weather elements (from the JSON data) and provides + methods to get/access the information.
      CurrentWeatherData.Rain -
      Parses data about rain (from the JSON data) and provides methods - to get/access the information.
      +
      Parses data about rain (from the JSON data) and provides methods to + get/access the information.
      CurrentWeatherData.Sys -
      Parses data about country, sunrise, and sunset (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about country, sunrise, and sunset (from the JSON data) and + provides methods to get/access the information.
      @@ -163,119 +164,119 @@ CurrentWeatherData.Wind -
      Parses data about winds (from the JSON data) and provides methods - to get/access the information.
      +
      Parses data about winds (from the JSON data) and provides methods to + get/access the information.
      DailyForecastData -
      Parses daily forecast data (from the JSON data) and provides methods - to get/access the information about daily forecasted weather.
      +
      Parses daily forecast data (from the JSON data) and provides methods to + get/access the information about daily forecasted weather.
      DailyForecastData.City -
      Parses data about city (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about city (from the JSON data) and provides methods to + get/access the information.
      DailyForecastData.City.Coord -
      Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
      DailyForecastData.Forecast -
      Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about forecasts (from the JSON data) and provides methods to + get/access the information.
      DailyForecastData.Forecast.Temperature -
      Parses data about temperature (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about temperature (from the JSON data) and provides + methods to get/access the information.
      DailyForecastData.Forecast.Weather -
      Parses data about weather (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about weather (from the JSON data) and provides methods + to get/access the information.
      ForecastWeatherData -
      Parses forecast weather data (from the JSON data) and provides methods - to get/access the information about forecasted weather.
      +
      Parses forecast weather data (from the JSON data) and provides methods to + get/access the information about forecasted weather.
      ForecastWeatherData.City -
      Parses data about city (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about city (from the JSON data) and provides methods to + get/access the information.
      ForecastWeatherData.City.Coord -
      Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
      ForecastWeatherData.Forecast -
      Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about forecasts (from the JSON data) and provides methods to + get/access the information.
      ForecastWeatherData.Forecast.Clouds -
      Parses data about clouds (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
      ForecastWeatherData.Forecast.Main -
      Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
      ForecastWeatherData.Forecast.Sys -
      Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
      ForecastWeatherData.Forecast.Weather -
      Parses data about weather (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about weather (from the JSON data) and provides methods + to get/access the information.
      ForecastWeatherData.Forecast.Wind -
      Parses data about wind (from the JSON data) - and provides methods to get/access the information.
      +
      Parses data about wind (from the JSON data) and provides methods to + get/access the information.
      OpenWeatherMap -
      Provides methods to get weather, forecast, and other data from +
      Provides methods to get weather, forecast, and other data from OpenWeatherMap.org
      @@ -301,13 +302,6 @@
      Provides methods to download data or files from the Internet.
      - -Tools.HTML - -
      Provides functions to handle HTML, e.g., correcting - non-compliant or non-strict web addresses, etc.
      - - diff --git a/javadoc/net/aksingh/java/api/owm/package-tree.html b/javadoc/net/aksingh/java/api/owm/package-tree.html index 1b97798..5a2eaf8 100644 --- a/javadoc/net/aksingh/java/api/owm/package-tree.html +++ b/javadoc/net/aksingh/java/api/owm/package-tree.html @@ -2,16 +2,16 @@ - + -net.aksingh.java.api.owm Class Hierarchy (OpenWeatherMap.org JAPIs) - +net.aksingh.java.api.owm Class Hierarchy (OWM JAPIs Docs) + @@ -122,7 +122,6 @@
    • net.aksingh.java.api.owm.Tools
    • net.aksingh.java.api.owm.Tools.Convertor
    • net.aksingh.java.api.owm.Tools.Downloader
    • -
    • net.aksingh.java.api.owm.Tools.HTML
    diff --git a/javadoc/net/aksingh/java/api/owm/package-use.html b/javadoc/net/aksingh/java/api/owm/package-use.html index bc0fb77..91cfe5a 100644 --- a/javadoc/net/aksingh/java/api/owm/package-use.html +++ b/javadoc/net/aksingh/java/api/owm/package-use.html @@ -2,16 +2,16 @@ - + -Uses of Package net.aksingh.java.api.owm (OpenWeatherMap.org JAPIs) - +Uses of Package net.aksingh.java.api.owm (OWM JAPIs Docs) + @@ -78,8 +78,9 @@ AbstractWeatherData -
    This class provides default implementations for CurrentWeatherData - and ForecastWeatherData classes.
    +
    This class provides default implementations for + CurrentWeatherData and + ForecastWeatherData classes.
    @@ -109,38 +110,38 @@ CurrentWeatherData -
    Parses current weather data (from the JSON data) and provides methods - to get/access the information about current weather.
    +
    Parses current weather data (from the JSON data) and provides methods to + get/access the information about current weather.
    CurrentWeatherData.Clouds -
    Parses data about clouds (from the JSON data) and provides methods - to get/access the information.
    +
    Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
    CurrentWeatherData.Coord -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
    CurrentWeatherData.Main -
    Parses data about main weather elements (from the JSON data) and - provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and provides + methods to get/access the information.
    CurrentWeatherData.Rain -
    Parses data about rain (from the JSON data) and provides methods - to get/access the information.
    +
    Parses data about rain (from the JSON data) and provides methods to + get/access the information.
    CurrentWeatherData.Sys -
    Parses data about country, sunrise, and sunset (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about country, sunrise, and sunset (from the JSON data) and + provides methods to get/access the information.
    @@ -150,104 +151,101 @@ CurrentWeatherData.Wind -
    Parses data about winds (from the JSON data) and provides methods - to get/access the information.
    +
    Parses data about winds (from the JSON data) and provides methods to + get/access the information.
    DailyForecastData -
    Parses daily forecast data (from the JSON data) and provides methods - to get/access the information about daily forecasted weather.
    +
    Parses daily forecast data (from the JSON data) and provides methods to + get/access the information about daily forecasted weather.
    DailyForecastData.City -
    Parses data about city (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about city (from the JSON data) and provides methods to + get/access the information.
    DailyForecastData.City.Coord -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
    DailyForecastData.Forecast -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about forecasts (from the JSON data) and provides methods to + get/access the information.
    DailyForecastData.Forecast.Temperature -
    Parses data about temperature (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about temperature (from the JSON data) and provides + methods to get/access the information.
    DailyForecastData.Forecast.Weather -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about weather (from the JSON data) and provides methods + to get/access the information.
    ForecastWeatherData -
    Parses forecast weather data (from the JSON data) and provides methods - to get/access the information about forecasted weather.
    +
    Parses forecast weather data (from the JSON data) and provides methods to + get/access the information about forecasted weather.
    ForecastWeatherData.City -
    Parses data about city (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about city (from the JSON data) and provides methods to + get/access the information.
    ForecastWeatherData.City.Coord -
    Parses data about geographic coordinates (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about geographic coordinates (from the JSON data) and + provides methods to get/access the information.
    ForecastWeatherData.Forecast -
    Parses data about forecasts (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about forecasts (from the JSON data) and provides methods to + get/access the information.
    ForecastWeatherData.Forecast.Clouds -
    Parses data about clouds (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about clouds (from the JSON data) and provides methods to + get/access the information.
    ForecastWeatherData.Forecast.Main -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
    ForecastWeatherData.Forecast.Sys -
    Parses data about main weather elements (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about main weather elements (from the JSON data) and + provides methods to get/access the information.
    ForecastWeatherData.Forecast.Weather -
    Parses data about weather (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about weather (from the JSON data) and provides methods + to get/access the information.
    ForecastWeatherData.Forecast.Wind -
    Parses data about wind (from the JSON data) - and provides methods to get/access the information.
    +
    Parses data about wind (from the JSON data) and provides methods to + get/access the information.
    -OpenWeatherMap.OWM_Response  - - OpenWeatherMap.OWM_URL  diff --git a/javadoc/overview-tree.html b/javadoc/overview-tree.html index 62e266e..a271437 100644 --- a/javadoc/overview-tree.html +++ b/javadoc/overview-tree.html @@ -2,16 +2,16 @@ - + -Class Hierarchy (OpenWeatherMap.org JAPIs) - +Class Hierarchy (OWM JAPIs Docs) + @@ -126,7 +126,6 @@
  • net.aksingh.java.api.owm.Tools
  • net.aksingh.java.api.owm.Tools.Convertor
  • net.aksingh.java.api.owm.Tools.Downloader
  • -
  • net.aksingh.java.api.owm.Tools.HTML