├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .travis.yml ├── ForecastIOLib.iml ├── LICENSE ├── README.md ├── appveyor.yml ├── art └── icon_IntelliJIDEA.png ├── jar ├── ForecastIOLib-1.5.2-jar-with-dependencies.jar └── ForecastIOLib-1.5.3-SNAPSHOT-jar-with-dependencies.jar ├── javadoc ├── allclasses-frame.html ├── allclasses-noframe.html ├── com │ └── github │ │ └── dvdme │ │ └── ForecastIOLib │ │ ├── FIOAlerts.html │ │ ├── FIOCurrently.html │ │ ├── FIODaily.html │ │ ├── FIODataBlock.html │ │ ├── FIODataPoint.html │ │ ├── FIOFlags.html │ │ ├── FIOHourly.html │ │ ├── FIOLibTest.html │ │ ├── FIOLibTest_Proxy.html │ │ ├── FIOMinutely.html │ │ ├── ForecastIO.html │ │ ├── class-use │ │ ├── FIOAlerts.html │ │ ├── FIOCurrently.html │ │ ├── FIODaily.html │ │ ├── FIODataBlock.html │ │ ├── FIODataPoint.html │ │ ├── FIOFlags.html │ │ ├── FIOHourly.html │ │ ├── FIOLibTest.html │ │ ├── FIOLibTest_Proxy.html │ │ ├── FIOMinutely.html │ │ └── ForecastIO.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── overview-tree.html ├── package-list ├── script.js └── stylesheet.css ├── pom.xml └── src └── com └── github ├── dvdme └── ForecastIOLib │ ├── FIOAlerts.java │ ├── FIOCurrently.java │ ├── FIODaily.java │ ├── FIODataBlock.java │ ├── FIODataPoint.java │ ├── FIOFlags.java │ ├── FIOHourly.java │ ├── FIOLibTest.java │ ├── FIOLibTest_Proxy.java │ ├── FIOMinutely.java │ └── ForecastIO.java └── einstein29 └── csv ├── FIOCsv.java ├── FIOCsvTest.java └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ForecastIOLib -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/.travis.yml -------------------------------------------------------------------------------- /ForecastIOLib.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/ForecastIOLib.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/icon_IntelliJIDEA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/art/icon_IntelliJIDEA.png -------------------------------------------------------------------------------- /jar/ForecastIOLib-1.5.2-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/jar/ForecastIOLib-1.5.2-jar-with-dependencies.jar -------------------------------------------------------------------------------- /jar/ForecastIOLib-1.5.3-SNAPSHOT-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/jar/ForecastIOLib-1.5.3-SNAPSHOT-jar-with-dependencies.jar -------------------------------------------------------------------------------- /javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOAlerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOAlerts.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOCurrently.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOCurrently.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIODaily.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIODaily.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIODataBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIODataBlock.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIODataPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIODataPoint.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOFlags.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOHourly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOHourly.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOLibTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOLibTest.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOLibTest_Proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOLibTest_Proxy.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/FIOMinutely.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/FIOMinutely.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/ForecastIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/ForecastIO.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOAlerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOAlerts.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOCurrently.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOCurrently.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIODaily.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIODaily.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIODataBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIODataBlock.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIODataPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIODataPoint.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOFlags.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOHourly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOHourly.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOLibTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOLibTest.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOLibTest_Proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOLibTest_Proxy.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOMinutely.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/FIOMinutely.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/class-use/ForecastIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/class-use/ForecastIO.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/package-frame.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/package-summary.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/package-tree.html -------------------------------------------------------------------------------- /javadoc/com/github/dvdme/ForecastIOLib/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/com/github/dvdme/ForecastIOLib/package-use.html -------------------------------------------------------------------------------- /javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/constant-values.html -------------------------------------------------------------------------------- /javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/help-doc.html -------------------------------------------------------------------------------- /javadoc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-1.html -------------------------------------------------------------------------------- /javadoc/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-10.html -------------------------------------------------------------------------------- /javadoc/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-11.html -------------------------------------------------------------------------------- /javadoc/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-12.html -------------------------------------------------------------------------------- /javadoc/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-13.html -------------------------------------------------------------------------------- /javadoc/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-14.html -------------------------------------------------------------------------------- /javadoc/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-15.html -------------------------------------------------------------------------------- /javadoc/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-16.html -------------------------------------------------------------------------------- /javadoc/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-17.html -------------------------------------------------------------------------------- /javadoc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-2.html -------------------------------------------------------------------------------- /javadoc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-3.html -------------------------------------------------------------------------------- /javadoc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-4.html -------------------------------------------------------------------------------- /javadoc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-5.html -------------------------------------------------------------------------------- /javadoc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-6.html -------------------------------------------------------------------------------- /javadoc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-7.html -------------------------------------------------------------------------------- /javadoc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-8.html -------------------------------------------------------------------------------- /javadoc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index-files/index-9.html -------------------------------------------------------------------------------- /javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/index.html -------------------------------------------------------------------------------- /javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/overview-tree.html -------------------------------------------------------------------------------- /javadoc/package-list: -------------------------------------------------------------------------------- 1 | com.github.dvdme.ForecastIOLib 2 | -------------------------------------------------------------------------------- /javadoc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/script.js -------------------------------------------------------------------------------- /javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/javadoc/stylesheet.css -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/pom.xml -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOAlerts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOAlerts.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOCurrently.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOCurrently.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIODaily.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIODaily.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIODataBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIODataBlock.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIODataPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIODataPoint.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOFlags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOFlags.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOHourly.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOHourly.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOLibTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOLibTest.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOLibTest_Proxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOLibTest_Proxy.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/FIOMinutely.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/FIOMinutely.java -------------------------------------------------------------------------------- /src/com/github/dvdme/ForecastIOLib/ForecastIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/dvdme/ForecastIOLib/ForecastIO.java -------------------------------------------------------------------------------- /src/com/github/einstein29/csv/FIOCsv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/einstein29/csv/FIOCsv.java -------------------------------------------------------------------------------- /src/com/github/einstein29/csv/FIOCsvTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/einstein29/csv/FIOCsvTest.java -------------------------------------------------------------------------------- /src/com/github/einstein29/csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdme/forecastio-lib-java/HEAD/src/com/github/einstein29/csv/README.md --------------------------------------------------------------------------------