From dd16f1df6b9a12e9333da33e2345d7bb0362f74e Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Mon, 15 Sep 2014 21:18:01 +0200 Subject: [PATCH 01/22] Update README.md Update trunk readme --- README.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 935e5cb1..8e05147b 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,9 @@ Support me and buy me a beer: If you are looking for a more complete user-agent detection, have a look at the libraries that use the user-agent-string.info database. http://user-agent-string.info/download -New in Version 1.14 (unreleased) +New in Version 1.15 (unreleased) ------------------- -- IOS8 support added -- added Opera Coast as new mobile browser -- more Chrome and Firefox versions added, including future releases (up to Firefox 40 and Chrome 40) -- added 3 Opera versions -- performance improvements +TBA Javadoc ------- @@ -57,6 +53,14 @@ Contributors Changelog --------- +1.14 +---- +- IOS8 support added +- added Opera Coast as new mobile browser +- more Chrome and Firefox versions added, including future releases (up to Firefox 40 and Chrome 40) +- added 3 Opera versions +- performance improvements + 1.13 ---- * Added additional Chrome and Opera browser versions From d4c3d362c3dad7de981237a57f0d60f11e0fae02 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Mon, 15 Sep 2014 21:18:32 +0200 Subject: [PATCH 02/22] Update trunk to 3.15-snapshot --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 157ab74c..67903cb3 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ User-Agent-Utils http://java.net/projects/user-agent-utils UserAgentUtils - 1.14-snapshot + 1.15-snapshot Utility classes to handle user-agents. github @@ -176,4 +176,4 @@ test - \ No newline at end of file + From 6cf1c761d803610e55e3f7bdd6bfb818ffa31c14 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Tue, 23 Sep 2014 16:18:25 +0200 Subject: [PATCH 03/22] Changing group id to follow conventions --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 67903cb3..dfe4a9ae 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - bitwalker + eu.bitwalker User-Agent-Utils http://java.net/projects/user-agent-utils UserAgentUtils From 8c183f63975a6b55a3a5759290e35825e616c6de Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Wed, 24 Sep 2014 09:20:31 +0200 Subject: [PATCH 04/22] Updated readme now that version 1.14 is available on maven central --- README.md | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 8e05147b..5eb88cbc 100644 --- a/README.md +++ b/README.md @@ -25,24 +25,12 @@ http://haraldwalker.github.com/user-agent-utils/javadoc/ Maven ----- -Include our github repository in your pom.xml: -```xml - - bitwalker.user-agent-utils.mvn.repo - https://raw.githubusercontent.com/HaraldWalker/user-agent-utils/mvn-repo/ - - - true - always - - -``` Add dependency: ```xml - bitwalker + eu.bitwalker UserAgentUtils - 1.13 + 1.14 ``` From d8ff7b9dc24aa089266bba1733a368d2751f3b1a Mon Sep 17 00:00:00 2001 From: Sudeep Sinha Date: Fri, 3 Oct 2014 16:04:09 -0400 Subject: [PATCH 05/22] Adding Safari 7 detection --- src/main/java/eu/bitwalker/useragentutils/Browser.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/eu/bitwalker/useragentutils/Browser.java b/src/main/java/eu/bitwalker/useragentutils/Browser.java index 191456f4..f06d842d 100644 --- a/src/main/java/eu/bitwalker/useragentutils/Browser.java +++ b/src/main/java/eu/bitwalker/useragentutils/Browser.java @@ -138,6 +138,7 @@ public enum Browser { BLACKBERRY10( Manufacturer.BLACKBERRY, Browser.SAFARI, 10, "BlackBerry", new String[] { "BB10" }, null, BrowserType.MOBILE_BROWSER, RenderingEngine.WEBKIT, null), MOBILE_SAFARI( Manufacturer.APPLE, Browser.SAFARI, 2, "Mobile Safari", new String[] { "Mobile Safari","Mobile/" }, new String[] { "Coast/", "Googlebot-Mobile" }, BrowserType.MOBILE_BROWSER, RenderingEngine.WEBKIT, null ), // before Safari SILK( Manufacturer.AMAZON, Browser.SAFARI, 15, "Silk", new String[] { "Silk/" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, "Silk\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\-[\\w]+)?)" ), // http://en.wikipedia.org/wiki/Amazon_Silk + SAFARI7( Manufacturer.APPLE, Browser.SAFARI, 7, "Safari 7", new String[] { "Version/7" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit SAFARI6( Manufacturer.APPLE, Browser.SAFARI, 6, "Safari 6", new String[] { "Version/6" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit SAFARI5( Manufacturer.APPLE, Browser.SAFARI, 3, "Safari 5", new String[] { "Version/5" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit SAFARI4( Manufacturer.APPLE, Browser.SAFARI, 4, "Safari 4", new String[] { "Version/4" }, new String[] { "Googlebot-Mobile" }, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit From 396ec902386404770f35fe75b92ccbfb661dc207 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 00:21:39 +0200 Subject: [PATCH 06/22] Update pom.xml for nexus deployments Conflicts: README.md pom.xml src/main/java/eu/bitwalker/useragentutils/Browser.java --- pom.xml | 115 ++++++++++++++++++++++++++++++++------------------------ 1 file changed, 65 insertions(+), 50 deletions(-) diff --git a/pom.xml b/pom.xml index dfe4a9ae..e49c691d 100644 --- a/pom.xml +++ b/pom.xml @@ -1,17 +1,16 @@ - 4.0.0 eu.bitwalker User-Agent-Utils http://java.net/projects/user-agent-utils UserAgentUtils - 1.15-snapshot + 1.15-SNAPSHOT Utility classes to handle user-agents. - github + github @@ -34,23 +33,27 @@ - - https://github.com/HaraldWalker/user-agent-utils/issues - GitHub - + + https://github.com/HaraldWalker/user-agent-utils/issues + GitHub + - https://github.com/HaraldWalker/user-agent-utils - scm:git:git://github.com:HaraldWalker/user-agent-utils.git - scm:git:git@github.com:HaraldWalker/user-agent-utils.git - + https://github.com/HaraldWalker/user-agent-utils + scm:git:git://github.com:HaraldWalker/user-agent-utils.git + scm:git:git@github.com:HaraldWalker/user-agent-utils.git + - - internal.repo - Temporary Staging Repository - file://${project.build.directory}/mvn-repo - + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + Maven Central Staging Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + @@ -65,31 +68,15 @@ - com.github.github - site-maven-plugin - 0.8 + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true - Maven artifacts for ${project.version} - true - ${project.build.directory}/mvn-repo - refs/heads/mvn-repo - - **/* - - true - user-agent-utils - haraldwalker + ossrh + https://oss.sonatype.org/ + true - - - - - site - - deploy - - maven-site-plugin @@ -101,17 +88,27 @@ + org.apache.maven.plugins maven-javadoc-plugin + 2.9.1 - javadoc1 + javadoc **/Test*.java + + + attach-javadocs + + jar + + + maven-surefire-plugin - 2.4 + 2.4 true -ea @@ -129,7 +126,7 @@ maven-resources-plugin 2.4 - + org.apache.maven.plugins maven-source-plugin @@ -137,7 +134,25 @@ attach-sources - jar + jar-no-fork + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + true + + + + sign-artifacts + verify + + sign @@ -155,9 +170,9 @@ **/Test*.java - src/main/java - eu.bitwalker.useragentutils - 1.6 + src/main/java + eu.bitwalker.useragentutils + 1.6 @@ -168,7 +183,7 @@ - + junit junit @@ -176,4 +191,4 @@ test - + \ No newline at end of file From 9a90152c591733969894e39b1efd829e5bdd27a1 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 00:25:44 +0200 Subject: [PATCH 07/22] Add Safari 8 --- src/main/java/eu/bitwalker/useragentutils/Browser.java | 3 ++- .../java/eu/bitwalker/useragentutils/BrowserTest.java | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/main/java/eu/bitwalker/useragentutils/Browser.java b/src/main/java/eu/bitwalker/useragentutils/Browser.java index f06d842d..4f968798 100644 --- a/src/main/java/eu/bitwalker/useragentutils/Browser.java +++ b/src/main/java/eu/bitwalker/useragentutils/Browser.java @@ -138,7 +138,8 @@ public enum Browser { BLACKBERRY10( Manufacturer.BLACKBERRY, Browser.SAFARI, 10, "BlackBerry", new String[] { "BB10" }, null, BrowserType.MOBILE_BROWSER, RenderingEngine.WEBKIT, null), MOBILE_SAFARI( Manufacturer.APPLE, Browser.SAFARI, 2, "Mobile Safari", new String[] { "Mobile Safari","Mobile/" }, new String[] { "Coast/", "Googlebot-Mobile" }, BrowserType.MOBILE_BROWSER, RenderingEngine.WEBKIT, null ), // before Safari SILK( Manufacturer.AMAZON, Browser.SAFARI, 15, "Silk", new String[] { "Silk/" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, "Silk\\/(([0-9]+)\\.?([\\w]+)?(\\.[\\w]+)?(\\-[\\w]+)?)" ), // http://en.wikipedia.org/wiki/Amazon_Silk - SAFARI7( Manufacturer.APPLE, Browser.SAFARI, 7, "Safari 7", new String[] { "Version/7" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit + SAFARI8( Manufacturer.APPLE, Browser.SAFARI, 8, "Safari 8", new String[] { "Version/8" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit + SAFARI7( Manufacturer.APPLE, Browser.SAFARI, 7, "Safari 7", new String[] { "Version/7" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit SAFARI6( Manufacturer.APPLE, Browser.SAFARI, 6, "Safari 6", new String[] { "Version/6" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit SAFARI5( Manufacturer.APPLE, Browser.SAFARI, 3, "Safari 5", new String[] { "Version/5" }, null, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit SAFARI4( Manufacturer.APPLE, Browser.SAFARI, 4, "Safari 4", new String[] { "Version/4" }, new String[] { "Googlebot-Mobile" }, BrowserType.WEB_BROWSER, RenderingEngine.WEBKIT, null ), // before AppleWebKit diff --git a/src/test/java/eu/bitwalker/useragentutils/BrowserTest.java b/src/test/java/eu/bitwalker/useragentutils/BrowserTest.java index fff8b682..8166ce49 100644 --- a/src/test/java/eu/bitwalker/useragentutils/BrowserTest.java +++ b/src/test/java/eu/bitwalker/useragentutils/BrowserTest.java @@ -302,6 +302,14 @@ public class BrowserTest { "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-gb) AppleWebKit/523.10.6 (KHTML, like Gecko) Version/3.0.4 Safari/523.10.6" }; + String[] safari8 = { + "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit/600.1.25 (KHTML, like Gecko) Version/8.0 Safari/600.1.25" + }; + + String[] safari7 = { + "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9) AppleWebKit/537.71 (KHTML, like Gecko) Version/7.0 Safari/537.71" + }; + String[] safari6 = { "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/536.28.10 (KHTML, like Gecko) Version/6.0.3 Safari/536.28.10" }; @@ -596,6 +604,8 @@ public void testParseUserAgentString() { testAgents(firefoxMobile23, Browser.FIREFOX_MOBILE23); testAgents(safari, Browser.SAFARI); testAgents(dolfin, Browser.DOLFIN2); + testAgents(safari8, Browser.SAFARI8); + testAgents(safari7, Browser.SAFARI7); testAgents(safari6, Browser.SAFARI6); testAgents(safari5, Browser.SAFARI5); testAgents(safari4, Browser.SAFARI4); From 9c356061d78238ad24579769b3a70a0d82c0535e Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 00:25:54 +0200 Subject: [PATCH 08/22] Add iOS 8.1 --- .../java/eu/bitwalker/useragentutils/OperatingSystem.java | 6 ++++-- .../eu/bitwalker/useragentutils/OperatingSystemTest.java | 6 ++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java b/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java index a6396d36..454060d3 100644 --- a/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java +++ b/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java @@ -92,13 +92,15 @@ public enum OperatingSystem { * iOS4, with the release of the iPhone 4, Apple renamed the OS to iOS. */ IOS( Manufacturer.APPLE,null, 2, "iOS", new String[] { "iPhone OS", "like Mac OS X" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions - iOS8_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 45, "iOS 8 (iPhone)", new String[] { "iPhone OS 8" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions + iOS8_1_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 46, "iOS 8.1 (iPhone)", new String[] { "iPhone OS 8_1" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions + iOS8_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 45, "iOS 8 (iPhone)", new String[] { "iPhone OS 8_0" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions iOS7_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 44, "iOS 7 (iPhone)", new String[] { "iPhone OS 7" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions iOS6_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 43, "iOS 6 (iPhone)", new String[] { "iPhone OS 6" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions iOS5_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 42, "iOS 5 (iPhone)", new String[] { "iPhone OS 5" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions iOS4_IPHONE( Manufacturer.APPLE,OperatingSystem.IOS, 41, "iOS 4 (iPhone)", new String[] { "iPhone OS 4" }, null, DeviceType.MOBILE, null ), // before MAC_OS_X_IPHONE for all older versions MAC_OS_X_IPAD( Manufacturer.APPLE, OperatingSystem.IOS, 50, "Mac OS X (iPad)", new String[] { "iPad" }, null, DeviceType.TABLET, null ), // before Mac OS X - iOS8_IPAD( Manufacturer.APPLE, OperatingSystem.MAC_OS_X_IPAD, 53, "iOS 8 (iPad)", new String[] { "OS 8" }, null, DeviceType.TABLET, null ), // before Mac OS X + iOS8_1_IPAD( Manufacturer.APPLE, OperatingSystem.MAC_OS_X_IPAD, 54, "iOS 8.1 (iPad)", new String[] { "OS 8_1" }, null, DeviceType.TABLET, null ), // before Mac OS X + iOS8_IPAD( Manufacturer.APPLE, OperatingSystem.MAC_OS_X_IPAD, 53, "iOS 8 (iPad)", new String[] { "OS 8_0" }, null, DeviceType.TABLET, null ), // before Mac OS X iOS7_IPAD( Manufacturer.APPLE, OperatingSystem.MAC_OS_X_IPAD, 52, "iOS 7 (iPad)", new String[] { "OS 7" }, null, DeviceType.TABLET, null ), // before Mac OS X iOS6_IPAD( Manufacturer.APPLE, OperatingSystem.MAC_OS_X_IPAD, 51, "iOS 6 (iPad)", new String[] { "OS 6" }, null, DeviceType.TABLET, null ), // before Mac OS X MAC_OS_X_IPHONE(Manufacturer.APPLE, OperatingSystem.IOS, 40, "Mac OS X (iPhone)", new String[] { "iPhone" }, null, DeviceType.MOBILE, null ), // before Mac OS X diff --git a/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java b/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java index 68b5101b..c16fb890 100644 --- a/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java +++ b/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java @@ -182,6 +182,11 @@ public class OperatingSystemTest { "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/538.34.9 (KHTML, like Gecko) Mobile/12A4265u" }; + String[] iPhone8_1 = + { + "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B401 Safari/600.1.4" + }; + String[] iPods = { "Mozilla/5.0 (iPod; U; CPU like Mac OS X; nl-nl) AppleWebKit/420.1 (KHTML, like Gecko)", "Mozilla/5.0 (iPod; U; CPU like Mac OS X; en) AppleWebKit/420.1 (KHTML, like Gecko)", @@ -384,6 +389,7 @@ public void testParseUserAgentString() { testAgents(iPhone6, OperatingSystem.iOS6_IPHONE); testAgents(iPhone7, OperatingSystem.iOS7_IPHONE); testAgents(iPhone8, OperatingSystem.iOS8_IPHONE); + testAgents(iPhone8_1, OperatingSystem.iOS8_1_IPHONE); testAgents(iPods, OperatingSystem.MAC_OS_X_IPOD); testAgents(iPadIos6, OperatingSystem.iOS6_IPAD); testAgents(iPadIos7, OperatingSystem.iOS7_IPAD); From e98545534e882efb7641518976ebac602169a115 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 00:26:14 +0200 Subject: [PATCH 09/22] Update readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5eb88cbc..de92a87e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ http://user-agent-string.info/download New in Version 1.15 (unreleased) ------------------- -TBA +- Safari 7 and 8 added +- iOS 8.1 added Javadoc ------- From 471dcfa2ef4ddd9b164dd1ee90b3766706e89f0d Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 00:30:49 +0200 Subject: [PATCH 10/22] Update javadocs --- javadoc/allclasses-frame.html | 7 +- javadoc/allclasses-noframe.html | 7 +- javadoc/constant-values.html | 18 +- javadoc/deprecated-list.html | 18 +- .../bitwalker/useragentutils/Application.html | 50 +- .../useragentutils/ApplicationType.html | 42 +- .../eu/bitwalker/useragentutils/Browser.html | 88 ++-- .../bitwalker/useragentutils/BrowserType.html | 42 +- .../bitwalker/useragentutils/DeviceType.html | 42 +- .../useragentutils/Manufacturer.html | 42 +- .../useragentutils/OperatingSystem.html | 82 ++-- .../useragentutils/RenderingEngine.html | 38 +- .../bitwalker/useragentutils/UserAgent.html | 52 +- .../eu/bitwalker/useragentutils/Version.html | 66 +-- .../useragentutils/class-use/Application.html | 22 +- .../class-use/ApplicationType.html | 20 +- .../useragentutils/class-use/Browser.html | 30 +- .../useragentutils/class-use/BrowserType.html | 20 +- .../useragentutils/class-use/DeviceType.html | 20 +- .../class-use/Manufacturer.html | 30 +- .../class-use/OperatingSystem.html | 30 +- .../class-use/RenderingEngine.html | 20 +- .../useragentutils/class-use/UserAgent.html | 22 +- .../useragentutils/class-use/Version.html | 20 +- .../useragentutils/package-frame.html | 7 +- .../useragentutils/package-summary.html | 14 +- .../useragentutils/package-tree.html | 30 +- .../bitwalker/useragentutils/package-use.html | 14 +- javadoc/help-doc.html | 20 +- javadoc/index-all.html | 452 ++++++++++++++++++ javadoc/index.html | 5 +- javadoc/overview-tree.html | 36 +- javadoc/serialized-form.html | 22 +- 33 files changed, 994 insertions(+), 434 deletions(-) create mode 100644 javadoc/index-all.html diff --git a/javadoc/allclasses-frame.html b/javadoc/allclasses-frame.html index 6132e201..dae572a4 100644 --- a/javadoc/allclasses-frame.html +++ b/javadoc/allclasses-frame.html @@ -2,9 +2,10 @@ - -All Classes - + + +All Classes (User-Agent-Utils 1.15-SNAPSHOT API) + diff --git a/javadoc/allclasses-noframe.html b/javadoc/allclasses-noframe.html index ab8cfad1..c214b46a 100644 --- a/javadoc/allclasses-noframe.html +++ b/javadoc/allclasses-noframe.html @@ -2,9 +2,10 @@ - -All Classes - + + +All Classes (User-Agent-Utils 1.15-SNAPSHOT API) + diff --git a/javadoc/constant-values.html b/javadoc/constant-values.html index 6c0eec7d..a107809a 100644 --- a/javadoc/constant-values.html +++ b/javadoc/constant-values.html @@ -2,15 +2,16 @@ - -Constant Field Values - + + +Constant Field Values (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -75,9 +76,9 @@

    Contents

  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -109,5 +110,6 @@

    Contents

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/deprecated-list.html b/javadoc/deprecated-list.html index 295ac70b..920814a8 100644 --- a/javadoc/deprecated-list.html +++ b/javadoc/deprecated-list.html @@ -2,15 +2,16 @@ - -Deprecated List - + + +Deprecated List (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -97,9 +98,9 @@

    Contents

  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -131,5 +132,6 @@

    Contents

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/Application.html b/javadoc/eu/bitwalker/useragentutils/Application.html index 26891f6e..4865aeee 100644 --- a/javadoc/eu/bitwalker/useragentutils/Application.html +++ b/javadoc/eu/bitwalker/useragentutils/Application.html @@ -2,15 +2,16 @@ - -Application - + + +Application (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum Application

    @@ -523,5 +524,6 @@

    valueOf

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/ApplicationType.html b/javadoc/eu/bitwalker/useragentutils/ApplicationType.html index aef680a6..c9be7760 100644 --- a/javadoc/eu/bitwalker/useragentutils/ApplicationType.html +++ b/javadoc/eu/bitwalker/useragentutils/ApplicationType.html @@ -2,15 +2,16 @@ - -ApplicationType - + + +ApplicationType (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum ApplicationType

    @@ -332,5 +333,6 @@

    getName

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/Browser.html b/javadoc/eu/bitwalker/useragentutils/Browser.html index 6ba59c21..11150760 100644 --- a/javadoc/eu/bitwalker/useragentutils/Browser.html +++ b/javadoc/eu/bitwalker/useragentutils/Browser.html @@ -2,15 +2,16 @@ - -Browser - + + +Browser (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum Browser

    + + + +
      +
    • +

      SAFARI8

      +
      public static final Browser SAFARI8
      +
    • +
    + + + +
      +
    • +

      SAFARI7

      +
      public static final Browser SAFARI7
      +
    • +
    @@ -2136,7 +2161,7 @@

    UNKNOWN

    • APPLE_MAIL

      -
      @Deprecated
      +
      @Deprecated
       public static final Browser APPLE_MAIL
      Deprecated. 
    • @@ -2172,7 +2197,7 @@

      values

      • valueOf

        -
        public static Browser valueOf(java.lang.String name)
        +
        public static Browser valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are @@ -2180,8 +2205,8 @@

        valueOf

        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        -
        java.lang.NullPointerException - if the argument is null
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
      @@ -2199,7 +2224,7 @@

      getId

      @@ -2208,7 +2233,7 @@

      getName

      • getVersion

        -
        public Version getVersion(java.lang.String userAgentString)
        +
        public Version getVersion(String userAgentString)
        Detects the detailed version information of the browser. Depends on the userAgent to be available. Returns null if it can not detect the version information.
        Returns:
        Version
        @@ -2260,7 +2285,7 @@

        getGroup

        • isInUserAgentString

          -
          public boolean isInUserAgentString(java.lang.String agentString)
          +
          public boolean isInUserAgentString(String agentString)
        @@ -2269,7 +2294,7 @@

        isInUserAgentString

        • parseUserAgentString

          -
          public static Browser parseUserAgentString(java.lang.String agentString)
          +
          public static Browser parseUserAgentString(String agentString)
          Iterates over all Browsers to compare the browser signature with the user agent string. If no match can be found Browser.UNKNOWN will be returned. @@ -2286,8 +2311,8 @@

          parseUserAgentString

          • parseUserAgentString

            -
            public static Browser parseUserAgentString(java.lang.String agentString,
            -                           java.util.List<Browser> browsers)
            +
            public static Browser parseUserAgentString(String agentString,
            +                           List<Browser> browsers)
            Iterates over the given Browsers (incl. children) to compare the browser signature with the user agent string. If no match can be found Browser.UNKNOWN will be returned. @@ -2329,7 +2354,7 @@

            valueOf

          • Use
          • Tree
          • Deprecated
          • -
          • Index
          • +
          • Index
          • Help
          @@ -2376,5 +2401,6 @@

          valueOf

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/BrowserType.html b/javadoc/eu/bitwalker/useragentutils/BrowserType.html index ac844c75..c7e3a3fe 100644 --- a/javadoc/eu/bitwalker/useragentutils/BrowserType.html +++ b/javadoc/eu/bitwalker/useragentutils/BrowserType.html @@ -2,15 +2,16 @@ - -BrowserType - + + +BrowserType (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum BrowserType

    @@ -422,5 +423,6 @@

    getName

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/DeviceType.html b/javadoc/eu/bitwalker/useragentutils/DeviceType.html index f8480809..7fc06fed 100644 --- a/javadoc/eu/bitwalker/useragentutils/DeviceType.html +++ b/javadoc/eu/bitwalker/useragentutils/DeviceType.html @@ -2,15 +2,16 @@ - -DeviceType - + + +DeviceType (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum DeviceType

    @@ -395,5 +396,6 @@

    getName

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/Manufacturer.html b/javadoc/eu/bitwalker/useragentutils/Manufacturer.html index 4b423000..0c746572 100644 --- a/javadoc/eu/bitwalker/useragentutils/Manufacturer.html +++ b/javadoc/eu/bitwalker/useragentutils/Manufacturer.html @@ -2,15 +2,16 @@ - -Manufacturer - + + +Manufacturer (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum Manufacturer

    @@ -651,5 +652,6 @@

    getName

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html b/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html index f799fa07..2415eafc 100644 --- a/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html +++ b/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html @@ -2,15 +2,16 @@ - -OperatingSystem - + + +OperatingSystem (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum OperatingSystem

    + + + + @@ -750,6 +766,15 @@

    MAC_OS_X_IPAD

    public static final OperatingSystem MAC_OS_X_IPAD
    + + + + @@ -1095,7 +1120,7 @@

    values

    • valueOf

      -
      public static OperatingSystem valueOf(java.lang.String name)
      +
      public static OperatingSystem valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are @@ -1103,8 +1128,8 @@

      valueOf

      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      -
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      -
      java.lang.NullPointerException - if the argument is null
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
    @@ -1122,7 +1147,7 @@

    getId

    @@ -1169,7 +1194,7 @@

    getManufacturer

    @@ -1283,5 +1308,6 @@

    valueOf

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html b/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html index cc17f84b..50df2f77 100644 --- a/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html +++ b/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html @@ -2,15 +2,16 @@ - -RenderingEngine - + + +RenderingEngine (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,10 +84,10 @@

    Enum RenderingEngine

    @@ -412,5 +413,6 @@

    valueOf

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/UserAgent.html b/javadoc/eu/bitwalker/useragentutils/UserAgent.html index 005b3b4f..4ec2cb0e 100644 --- a/javadoc/eu/bitwalker/useragentutils/UserAgent.html +++ b/javadoc/eu/bitwalker/useragentutils/UserAgent.html @@ -2,15 +2,16 @@ - -UserAgent - + + +UserAgent (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,7 +84,7 @@

    Class UserAgent

    @@ -232,7 +233,7 @@

    UserAgent

    • UserAgent

      -
      public UserAgent(java.lang.String userAgentString)
      +
      public UserAgent(String userAgentString)
    @@ -249,7 +250,7 @@

    Method Detail

    • parseUserAgentString

      -
      public static UserAgent parseUserAgentString(java.lang.String userAgentString)
      +
      public static UserAgent parseUserAgentString(String userAgentString)
      Parameters:
      userAgentString -
      Returns:
      UserAgent
    • @@ -304,11 +305,11 @@

      getId

      • toString

        -
        public java.lang.String toString()
        +
        public String toString()
        Combined string representation of both enums
        Overrides:
        -
        toString in class java.lang.Object
        +
        toString in class Object
      @@ -330,7 +331,7 @@

      valueOf

      • valueOf

        -
        public static UserAgent valueOf(java.lang.String name)
        +
        public static UserAgent valueOf(String name)
        Returns UserAgent based on combined string representation
        Parameters:
        name -
        Returns:
        @@ -345,7 +346,7 @@

        hashCode

        public int hashCode()
        Overrides:
        -
        hashCode in class java.lang.Object
        +
        hashCode in class Object
      @@ -355,10 +356,10 @@

      hashCode

      • equals

        -
        public boolean equals(java.lang.Object obj)
        +
        public boolean equals(Object obj)
        Overrides:
        -
        equals in class java.lang.Object
        +
        equals in class Object
      @@ -381,7 +382,7 @@

      equals

    • Use
    • Tree
    • Deprecated
    • -
    • Index
    • +
    • Index
    • Help
    @@ -428,5 +429,6 @@

    equals

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/Version.html b/javadoc/eu/bitwalker/useragentutils/Version.html index 5249c17b..c18e888b 100644 --- a/javadoc/eu/bitwalker/useragentutils/Version.html +++ b/javadoc/eu/bitwalker/useragentutils/Version.html @@ -2,15 +2,16 @@ - -Version - + + +Version (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -83,7 +84,7 @@

    Class Version

      -
    • java.lang.Object
    • +
    • java.lang.Object
      • eu.bitwalker.useragentutils.Version
      • @@ -95,13 +96,13 @@

        Class Version

      • All Implemented Interfaces:
        -
        java.lang.Comparable<Version>
        +
        Comparable<Version>


        public class Version
        -extends java.lang.Object
        -implements java.lang.Comparable<Version>
        +extends Object +implements Comparable<Version>
        Container for general version information. All version information is stored as String as sometimes version information includes alphabetical characters.
        Author:
        @@ -124,9 +125,9 @@

        Constructor Summary

        Constructor and Description -Version(java.lang.String version, - java.lang.String majorVersion, - java.lang.String minorVersion)  +Version(String version, + String majorVersion, + String minorVersion) 
      • @@ -149,18 +150,18 @@

        Method Summary

        boolean -equals(java.lang.Object obj)  +equals(Object obj)  -java.lang.String +String getMajorVersion()  -java.lang.String +String getMinorVersion()  -java.lang.String +String getVersion()  @@ -168,7 +169,7 @@

        Method Summary

        hashCode()  -java.lang.String +String toString()  @@ -176,8 +177,8 @@

        Method Summary

      • -

        Methods inherited from class java.lang.Object

        -getClass, notify, notifyAll, wait, wait, wait
      • +

        Methods inherited from class java.lang.Object

        +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    @@ -199,9 +200,9 @@

    Constructor Detail

    • Version

      -
      public Version(java.lang.String version,
      -       java.lang.String majorVersion,
      -       java.lang.String minorVersion)
      +
      public Version(String version,
      +       String majorVersion,
      +       String minorVersion)
    @@ -218,7 +219,7 @@

    Method Detail

    • getVersion

      -
      public java.lang.String getVersion()
      +
      public String getVersion()
    @@ -227,7 +228,7 @@

    getVersion

    @@ -236,7 +237,7 @@

    getMajorVersion

    @@ -245,10 +246,10 @@

    getMinorVersion

    @@ -261,7 +262,7 @@

    hashCode

    public int hashCode()
    Overrides:
    -
    hashCode in class java.lang.Object
    +
    hashCode in class Object
    @@ -271,10 +272,10 @@

    hashCode

    • equals

      -
      public boolean equals(java.lang.Object obj)
      +
      public boolean equals(Object obj)
      Overrides:
      -
      equals in class java.lang.Object
      +
      equals in class Object
    @@ -287,7 +288,7 @@

    compareTo

    public int compareTo(Version other)
    Specified by:
    -
    compareTo in interface java.lang.Comparable<Version>
    +
    compareTo in interface Comparable<Version>
    @@ -310,7 +311,7 @@

    compareTo

  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -357,5 +358,6 @@

    compareTo

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Application.html b/javadoc/eu/bitwalker/useragentutils/class-use/Application.html index f0b7ae27..1ccf7c90 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Application.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Application.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.Application - + + +Uses of Class eu.bitwalker.useragentutils.Application (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -81,7 +82,7 @@

    Uses of static Application -Application.parseReferrerString(java.lang.String referrerString)  +Application.parseReferrerString(String referrerString)  static Application @@ -91,7 +92,7 @@

    Uses of static Application -Application.valueOf(java.lang.String name) +Application.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -119,9 +120,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -153,5 +154,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html b/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html index 58c6c549..baa8b322 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.ApplicationType - + + +Uses of Class eu.bitwalker.useragentutils.ApplicationType (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -85,7 +86,7 @@

    Uses of static ApplicationType -ApplicationType.valueOf(java.lang.String name) +ApplicationType.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -113,9 +114,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -147,5 +148,6 @@

    Uses of Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html b/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html index 1845eed4..d1f16ef5 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.Browser - + + +Uses of Class eu.bitwalker.useragentutils.Browser (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -89,15 +90,15 @@

    Uses of static Browser -Browser.parseUserAgentString(java.lang.String agentString) +Browser.parseUserAgentString(String agentString)
    Iterates over all Browsers to compare the browser signature with the user agent string.
    static Browser -Browser.parseUserAgentString(java.lang.String agentString, - java.util.List<Browser> browsers) +Browser.parseUserAgentString(String agentString, + List<Browser> browsers)
    Iterates over the given Browsers (incl.
    @@ -109,7 +110,7 @@

    Uses of static Browser -Browser.valueOf(java.lang.String name) +Browser.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -131,8 +132,8 @@

    Uses of static Browser -Browser.parseUserAgentString(java.lang.String agentString, - java.util.List<Browser> browsers) +Browser.parseUserAgentString(String agentString, + List<Browser> browsers)
    Iterates over the given Browsers (incl.
    @@ -165,9 +166,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -199,5 +200,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html b/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html index 961073a3..2c662316 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.BrowserType - + + +Uses of Class eu.bitwalker.useragentutils.BrowserType (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -85,7 +86,7 @@

    Uses of static BrowserType -BrowserType.valueOf(java.lang.String name) +BrowserType.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -113,9 +114,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -147,5 +148,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html b/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html index 9758e55b..2954c14d 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.DeviceType - + + +Uses of Class eu.bitwalker.useragentutils.DeviceType (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -85,7 +86,7 @@

    Uses of static DeviceType -DeviceType.valueOf(java.lang.String name) +DeviceType.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -113,9 +114,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -147,5 +148,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html b/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html index 3372e2d2..6c9272f5 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.Manufacturer - + + +Uses of Class eu.bitwalker.useragentutils.Manufacturer (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -81,21 +82,21 @@

    Uses of Manufacturer -Application.getManufacturer()  - - -Manufacturer OperatingSystem.getManufacturer()
    Returns the manufacturer of the operating system
    - + Manufacturer Browser.getManufacturer()  + +Manufacturer +Application.getManufacturer()  + static Manufacturer -Manufacturer.valueOf(java.lang.String name) +Manufacturer.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -123,9 +124,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -157,5 +158,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html b/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html index 694e80cb..e00af0f1 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.OperatingSystem - + + +Uses of Class eu.bitwalker.useragentutils.OperatingSystem (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -89,14 +90,14 @@

    Uses of static OperatingSystem -OperatingSystem.parseUserAgentString(java.lang.String agentString) +OperatingSystem.parseUserAgentString(String agentString)
    Parses user agent string and returns the best match.
    static OperatingSystem -OperatingSystem.parseUserAgentString(java.lang.String agentString, - java.util.List<OperatingSystem> operatingSystems) +OperatingSystem.parseUserAgentString(String agentString, + List<OperatingSystem> operatingSystems)
    Parses the user agent string and returns the best match for the given operating systems.
    @@ -108,7 +109,7 @@

    Uses of static OperatingSystem -OperatingSystem.valueOf(java.lang.String name) +OperatingSystem.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -130,8 +131,8 @@

    Uses of static OperatingSystem -OperatingSystem.parseUserAgentString(java.lang.String agentString, - java.util.List<OperatingSystem> operatingSystems) +OperatingSystem.parseUserAgentString(String agentString, + List<OperatingSystem> operatingSystems)
    Parses the user agent string and returns the best match for the given operating systems.
    @@ -164,9 +165,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -198,5 +199,6 @@

    Uses of Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html b/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html index 39ad9005..a5a4159f 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.RenderingEngine - + + +Uses of Class eu.bitwalker.useragentutils.RenderingEngine (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -85,7 +86,7 @@

    Uses of static RenderingEngine -RenderingEngine.valueOf(java.lang.String name) +RenderingEngine.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    @@ -113,9 +114,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -147,5 +148,6 @@

    Uses of Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html b/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html index 93ad579f..d0feeaf6 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.UserAgent - + + +Uses of Class eu.bitwalker.useragentutils.UserAgent (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -81,7 +82,7 @@

    Uses of static UserAgent -UserAgent.parseUserAgentString(java.lang.String userAgentString)  +UserAgent.parseUserAgentString(String userAgentString)  static UserAgent @@ -91,7 +92,7 @@

    Uses of static UserAgent -UserAgent.valueOf(java.lang.String name) +UserAgent.valueOf(String name)
    Returns UserAgent based on combined string representation
    @@ -112,9 +113,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -146,5 +147,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Version.html b/javadoc/eu/bitwalker/useragentutils/class-use/Version.html index f643710b..0e5f894d 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Version.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Version.html @@ -2,15 +2,16 @@ - -Uses of Class eu.bitwalker.useragentutils.Version - + + +Uses of Class eu.bitwalker.useragentutils.Version (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -87,7 +88,7 @@

    Uses of Version -Browser.getVersion(java.lang.String userAgentString) +Browser.getVersion(String userAgentString)
    Detects the detailed version information of the browser.
    @@ -121,9 +122,9 @@

    Uses of Package
  • Class
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -155,5 +156,6 @@

    Uses of +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/package-frame.html b/javadoc/eu/bitwalker/useragentutils/package-frame.html index fd4193e4..b4c5ff0f 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-frame.html +++ b/javadoc/eu/bitwalker/useragentutils/package-frame.html @@ -2,9 +2,10 @@ - -eu.bitwalker.useragentutils - + + +eu.bitwalker.useragentutils (User-Agent-Utils 1.15-SNAPSHOT API) + diff --git a/javadoc/eu/bitwalker/useragentutils/package-summary.html b/javadoc/eu/bitwalker/useragentutils/package-summary.html index 26d03e2a..e46cde31 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-summary.html +++ b/javadoc/eu/bitwalker/useragentutils/package-summary.html @@ -2,15 +2,16 @@ - -eu.bitwalker.useragentutils - + + +eu.bitwalker.useragentutils (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +162,7 @@

    Package eu.bitwalker.useragentutils

  • Use
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -193,5 +194,6 @@

    Package eu.bitwalker.useragentutils

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/package-tree.html b/javadoc/eu/bitwalker/useragentutils/package-tree.html index 5af975af..9acfb14b 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-tree.html +++ b/javadoc/eu/bitwalker/useragentutils/package-tree.html @@ -2,15 +2,16 @@ - -eu.bitwalker.useragentutils Class Hierarchy - + + +eu.bitwalker.useragentutils Class Hierarchy (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Use
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -67,27 +68,27 @@

    Hierarchy For Package eu.bitwalker.useragentutils

    Class Hierarchy

      -
    • java.lang.Object +
    • java.lang.Object
        -
      • eu.bitwalker.useragentutils.UserAgent (implements java.io.Serializable)
      • -
      • eu.bitwalker.useragentutils.Version (implements java.lang.Comparable<T>)
      • +
      • eu.bitwalker.useragentutils.UserAgent (implements java.io.Serializable)
      • +
      • eu.bitwalker.useragentutils.Version (implements java.lang.Comparable<T>)

    Enum Hierarchy

    @@ -138,5 +139,6 @@

    Enum Hierarchy

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/eu/bitwalker/useragentutils/package-use.html b/javadoc/eu/bitwalker/useragentutils/package-use.html index f15d164a..c55d4321 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-use.html +++ b/javadoc/eu/bitwalker/useragentutils/package-use.html @@ -2,15 +2,16 @@ - -Uses of Package eu.bitwalker.useragentutils - + + +Uses of Package eu.bitwalker.useragentutils (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -29,7 +30,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -141,7 +142,7 @@

    Uses of Pa
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -173,5 +174,6 @@

    Uses of Pa +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/help-doc.html b/javadoc/help-doc.html index fb06fe4c..d3eef3e1 100644 --- a/javadoc/help-doc.html +++ b/javadoc/help-doc.html @@ -2,15 +2,16 @@ - -API Help - + + +API Help (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • @@ -142,7 +143,7 @@

    Deprecated API

  • Index

    -

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

  • Prev/Next

    @@ -176,9 +177,9 @@

    Constant Field Values

  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • @@ -210,5 +211,6 @@

    Constant Field Values

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/index-all.html b/javadoc/index-all.html new file mode 100644 index 00000000..0ddc246e --- /dev/null +++ b/javadoc/index-all.html @@ -0,0 +1,452 @@ + + + + + + +Index (User-Agent-Utils 1.15-SNAPSHOT API) + + + + + + + +
    + + + + + +
    + + +
    A B C D E G H I M O P R T U V  + + +

    A

    +
    +
    Application - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants for internet applications like web-application and rich + internet application.
    +
    +
    ApplicationType - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants classifying the different types of applications which are common in referrer strings
    +
    +
    + + + +

    B

    +
    +
    Browser - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants for most common browsers, including e-mail clients and bots.
    +
    +
    BrowserType - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants classifying the different types of browsers which are common in user-agent strings
    +
    +
    + + + +

    C

    +
    +
    compareTo(Version) - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    + + + +

    D

    +
    +
    DeviceType - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum contact for the type of used device
    +
    +
    + + + +

    E

    +
    +
    equals(Object) - Method in class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    equals(Object) - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    eu.bitwalker.useragentutils - package eu.bitwalker.useragentutils
    +
     
    +
    + + + +

    G

    +
    +
    getApplicationType() - Method in enum eu.bitwalker.useragentutils.Application
    +
     
    +
    getBrowser() - Method in class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    getBrowserType() - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    getBrowserVersion() - Method in class eu.bitwalker.useragentutils.UserAgent
    +
    +
    Detects the detailed version information of the browser.
    +
    +
    getDeviceType() - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
     
    +
    getGroup() - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    getGroup() - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
     
    +
    getId() - Method in enum eu.bitwalker.useragentutils.Application
    +
     
    +
    getId() - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    getId() - Method in enum eu.bitwalker.useragentutils.Manufacturer
    +
     
    +
    getId() - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
     
    +
    getId() - Method in class eu.bitwalker.useragentutils.UserAgent
    +
    +
    Returns an unique integer value of the operating system & browser combination
    +
    +
    getMajorVersion() - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    getManufacturer() - Method in enum eu.bitwalker.useragentutils.Application
    +
     
    +
    getManufacturer() - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    getManufacturer() - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Returns the manufacturer of the operating system
    +
    +
    getMinorVersion() - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.Application
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.ApplicationType
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.BrowserType
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.DeviceType
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.Manufacturer
    +
     
    +
    getName() - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
     
    +
    getOperatingSystem() - Method in class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    getRenderingEngine() - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    getVersion(String) - Method in enum eu.bitwalker.useragentutils.Browser
    +
    +
    Detects the detailed version information of the browser.
    +
    +
    getVersion() - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    + + + +

    H

    +
    +
    hashCode() - Method in class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    hashCode() - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    + + + +

    I

    +
    +
    isInReferrerString(String) - Method in enum eu.bitwalker.useragentutils.Application
    +
     
    +
    isInUserAgentString(String) - Method in enum eu.bitwalker.useragentutils.Browser
    +
     
    +
    isInUserAgentString(String) - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Checks if the given user-agent string matches to the operating system.
    +
    +
    isMobileDevice() - Method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
     
    +
    + + + +

    M

    +
    +
    Manufacturer - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants representing manufacturers of operating systems and client software.
    +
    +
    + + + +

    O

    +
    +
    OperatingSystem - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants for most common operating systems.
    +
    +
    + + + +

    P

    +
    +
    parseReferrerString(String) - Static method in enum eu.bitwalker.useragentutils.Application
    +
     
    +
    parseUserAgentString(String) - Static method in enum eu.bitwalker.useragentutils.Browser
    +
    +
    Iterates over all Browsers to compare the browser signature with + the user agent string.
    +
    +
    parseUserAgentString(String, List<Browser>) - Static method in enum eu.bitwalker.useragentutils.Browser
    +
    +
    Iterates over the given Browsers (incl.
    +
    +
    parseUserAgentString(String) - Static method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Parses user agent string and returns the best match.
    +
    +
    parseUserAgentString(String, List<OperatingSystem>) - Static method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Parses the user agent string and returns the best match for the given operating systems.
    +
    +
    parseUserAgentString(String) - Static method in class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    + + + +

    R

    +
    +
    RenderingEngine - Enum in eu.bitwalker.useragentutils
    +
    +
    Enum constants classifying the different types of rendering engines which are being used by browsers.
    +
    +
    + + + +

    T

    +
    +
    toString() - Method in class eu.bitwalker.useragentutils.UserAgent
    +
    +
    Combined string representation of both enums
    +
    +
    toString() - Method in class eu.bitwalker.useragentutils.Version
    +
     
    +
    + + + +

    U

    +
    +
    UserAgent - Class in eu.bitwalker.useragentutils
    +
     
    +
    UserAgent(OperatingSystem, Browser) - Constructor for class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    UserAgent(String) - Constructor for class eu.bitwalker.useragentutils.UserAgent
    +
     
    +
    + + + +

    V

    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.Application
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(short) - Static method in enum eu.bitwalker.useragentutils.Application
    +
    +
    Returns the enum constant of this type with the specified id.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.ApplicationType
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.Browser
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(short) - Static method in enum eu.bitwalker.useragentutils.Browser
    +
    +
    Returns the enum constant of this type with the specified id.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.BrowserType
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.DeviceType
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.Manufacturer
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(short) - Static method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Returns the enum constant of this type with the specified id.
    +
    +
    valueOf(String) - Static method in enum eu.bitwalker.useragentutils.RenderingEngine
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(int) - Static method in class eu.bitwalker.useragentutils.UserAgent
    +
    +
    Returns UserAgent based on specified unique id
    +
    +
    valueOf(String) - Static method in class eu.bitwalker.useragentutils.UserAgent
    +
    +
    Returns UserAgent based on combined string representation
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.Application
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.ApplicationType
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.Browser
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.BrowserType
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.DeviceType
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.Manufacturer
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.OperatingSystem
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum eu.bitwalker.useragentutils.RenderingEngine
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    Version - Class in eu.bitwalker.useragentutils
    +
    +
    Container for general version information.
    +
    +
    Version(String, String, String) - Constructor for class eu.bitwalker.useragentutils.Version
    +
     
    +
    +A B C D E G H I M O P R T U V 
    + +
    + + + + + +
    + + +

    Copyright © 2014. All rights reserved.

    + + diff --git a/javadoc/index.html b/javadoc/index.html index 5feaa862..b2e86eec 100644 --- a/javadoc/index.html +++ b/javadoc/index.html @@ -2,8 +2,9 @@ - -Generated Documentation (Untitled) + + +User-Agent-Utils 1.15-SNAPSHOT API @@ -29,7 +30,7 @@
  • Use
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -71,27 +72,27 @@

    Hierarchy For All Packages

    Class Hierarchy

      -
    • java.lang.Object +
    • java.lang.Object
        -
      • eu.bitwalker.useragentutils.UserAgent (implements java.io.Serializable)
      • -
      • eu.bitwalker.useragentutils.Version (implements java.lang.Comparable<T>)
      • +
      • eu.bitwalker.useragentutils.UserAgent (implements java.io.Serializable)
      • +
      • eu.bitwalker.useragentutils.Version (implements java.lang.Comparable<T>)

    Enum Hierarchy

    @@ -142,5 +143,6 @@

    Enum Hierarchy

    +

    Copyright © 2014. All rights reserved.

    diff --git a/javadoc/serialized-form.html b/javadoc/serialized-form.html index 45ec4199..f7962ce1 100644 --- a/javadoc/serialized-form.html +++ b/javadoc/serialized-form.html @@ -2,15 +2,16 @@ - -Serialized Form - + + +Serialized Form (User-Agent-Utils 1.15-SNAPSHOT API) + @@ -27,9 +28,9 @@
  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -72,7 +73,7 @@

    Package eu.bitwalker.useragentutils

  • -

    Class eu.bitwalker.useragentutils.UserAgent extends java.lang.Object implements Serializable

    +

    Class eu.bitwalker.useragentutils.UserAgent extends Object implements Serializable

    serialVersionUID:
    7025462762784240212L
    @@ -97,7 +98,7 @@

    id

  • userAgentString

    -
    java.lang.String userAgentString
    +
    String userAgentString
  • @@ -117,9 +118,9 @@

    userAgentString

  • Package
  • Class
  • Use
  • -
  • Tree
  • +
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,5 +152,6 @@

    userAgentString

    +

    Copyright © 2014. All rights reserved.

    From 0665a5494256b34b3ecc509126f5fb0fddd3e909 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 00:32:00 +0200 Subject: [PATCH 11/22] Add example maven dependency for current snapshot release --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index de92a87e..a994c087 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,15 @@ Add dependency: ``` +Add dependency for snapshot releases: +```xml + + eu.bitwalker + UserAgentUtils + 1.15-SNAPSHOT + +``` + Contributors ------------ * Please use the `trunk` branch on GitHub when making a pull request From 56fd34b5a125b0901b7a99e3bc7a428d4fb100e2 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 01:07:27 +0200 Subject: [PATCH 12/22] Add wearable device category and --- src/main/java/eu/bitwalker/useragentutils/DeviceType.java | 4 ++++ .../java/eu/bitwalker/useragentutils/OperatingSystem.java | 5 +++-- .../eu/bitwalker/useragentutils/OperatingSystemTest.java | 6 ++++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/bitwalker/useragentutils/DeviceType.java b/src/main/java/eu/bitwalker/useragentutils/DeviceType.java index e6c90b33..f8f87c94 100644 --- a/src/main/java/eu/bitwalker/useragentutils/DeviceType.java +++ b/src/main/java/eu/bitwalker/useragentutils/DeviceType.java @@ -64,6 +64,10 @@ public enum DeviceType { * Digital media receiver like the Google TV. */ DMR("Digital media receiver"), + /** + * Miniature device like a smart watch or interactive glasses + */ + WEARABLE("Wearable computer"), /** * Other or unknow type of device. */ diff --git a/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java b/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java index 454060d3..13f36aa4 100644 --- a/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java +++ b/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java @@ -65,8 +65,9 @@ public enum OperatingSystem { WINDOWS_98( Manufacturer.MICROSOFT,OperatingSystem.WINDOWS,5, "Windows 98", new String[] { "Windows 98","Win98" }, new String[] { "Palm" }, DeviceType.COMPUTER, null ), // before Win ANDROID( Manufacturer.GOOGLE,null, 0, "Android", new String[] { "Android" }, null, DeviceType.MOBILE, null ), - ANDROID4( Manufacturer.GOOGLE,OperatingSystem.ANDROID, 4, "Android 4.x", new String[] { "Android 4","Android-4" }, null, DeviceType.MOBILE, null ), - ANDROID4_TABLET(Manufacturer.GOOGLE,OperatingSystem.ANDROID4, 40, "Android 4.x Tablet", new String[] { "Android 4","Android-4" }, new String[] { "mobile" }, DeviceType.TABLET, null ), + ANDROID4( Manufacturer.GOOGLE,OperatingSystem.ANDROID, 4, "Android 4.x", new String[] { "Android 4", "Android-4" }, new String[] { "glass" }, DeviceType.MOBILE, null ), + ANDROID4_TABLET(Manufacturer.GOOGLE,OperatingSystem.ANDROID4, 40, "Android 4.x Tablet", new String[] { "Android 4", "Android-4"}, new String[] { "mobile", "glass" }, DeviceType.TABLET, null ), + ANDROID4_WEARABLE(Manufacturer.GOOGLE,OperatingSystem.ANDROID, 400, "Android 4.x", new String[] { "Android 4" }, null, DeviceType.WEARABLE, null ), ANDROID3_TABLET(Manufacturer.GOOGLE,OperatingSystem.ANDROID, 30, "Android 3.x Tablet", new String[] { "Android 3" }, null, DeviceType.TABLET, null ), // as long as there are not Android 3.x phones this should be enough ANDROID2( Manufacturer.GOOGLE,OperatingSystem.ANDROID, 2, "Android 2.x", new String[] { "Android 2" }, null, DeviceType.MOBILE, null ), ANDROID2_TABLET(Manufacturer.GOOGLE,OperatingSystem.ANDROID2, 20, "Android 2.x Tablet", new String[] { "Kindle Fire", "GT-P1000","SCH-I800" }, null, DeviceType.TABLET, null ), diff --git a/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java b/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java index c16fb890..835b0efd 100644 --- a/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java +++ b/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java @@ -267,6 +267,11 @@ public class OperatingSystemTest { "Mozilla/5.0 (Linux; U; Android 4.1; xx-xx; ME301T Build/JRO03C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" // Asus ME301T (MeMO Pad Smart 10) }; + String[] android4_wearable = { + "Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; Glass 1 Build/IMM76L; XE7) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" + }; + + String[] androidMobile = { "Mozilla/5.0 (Android; Mobile; rv:23.0) Gecko/23.0 Firefox/23.0" // no OS version information in UA-string }; @@ -403,6 +408,7 @@ public void testParseUserAgentString() { testAgents(android2_tablet, OperatingSystem.ANDROID2_TABLET); testAgents(android3_tablet, OperatingSystem.ANDROID3_TABLET); testAgents(android4_tablet, OperatingSystem.ANDROID4_TABLET); + testAgents(android4_wearable, OperatingSystem.ANDROID4_WEARABLE); testAgents(androidMobile, OperatingSystem.ANDROID_MOBILE); testAgents(androidTablet, OperatingSystem.ANDROID_TABLET); testAgents(maemo, OperatingSystem.MAEMO); From 47c1565ef2f580d826e229ddbdc9a62b6ed89779 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 01:16:51 +0200 Subject: [PATCH 13/22] Add initial support for Chrome OS --- README.md | 2 ++ .../java/eu/bitwalker/useragentutils/OperatingSystem.java | 5 ++++- .../eu/bitwalker/useragentutils/OperatingSystemTest.java | 6 ++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a994c087..ee742e5e 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ New in Version 1.15 (unreleased) ------------------- - Safari 7 and 8 added - iOS 8.1 added +- Wearable device category added with detection of Google Glass +- Chrome OS added Javadoc ------- diff --git a/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java b/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java index 13f36aa4..07a54c85 100644 --- a/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java +++ b/src/main/java/eu/bitwalker/useragentutils/OperatingSystem.java @@ -81,7 +81,10 @@ public enum OperatingSystem { */ ANDROID_TABLET( Manufacturer.GOOGLE,OperatingSystem.ANDROID, 12, "Android Tablet", new String[] { "Tablet" }, null, DeviceType.TABLET, null ), - + /** + * Chrome OS by Google, mostly used on Chromebooks and Chromeboxes + */ + CHROME_OS( Manufacturer.GOOGLE,null, 1000, "Chrome OS", new String[] { "CrOS" }, null, DeviceType.COMPUTER, null ), /** * PalmOS, exact version unkown */ diff --git a/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java b/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java index 835b0efd..e435558a 100644 --- a/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java +++ b/src/test/java/eu/bitwalker/useragentutils/OperatingSystemTest.java @@ -279,6 +279,11 @@ public class OperatingSystemTest { String[] androidTablet = { "Mozilla/5.0 (Android; Tablet; rv:23.0) Gecko/23.0 Firefox/23.0" // no OS version information in UA-string }; + + String[] chromeOS = { + "Mozilla/5.0 (X11; CrOS armv7l 5500.100.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.120 Safari/537.36", + "Mozilla/5.0 (X11; CrOS x86_64 5841.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.126 Safari/537.36" + }; String[] windows98 = { "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Rogers Hi-Speed Internet; (R1 1.3))", @@ -411,6 +416,7 @@ public void testParseUserAgentString() { testAgents(android4_wearable, OperatingSystem.ANDROID4_WEARABLE); testAgents(androidMobile, OperatingSystem.ANDROID_MOBILE); testAgents(androidTablet, OperatingSystem.ANDROID_TABLET); + testAgents(chromeOS, OperatingSystem.CHROME_OS); testAgents(maemo, OperatingSystem.MAEMO); testAgents(kindle2, OperatingSystem.KINDLE2); testAgents(kindle3, OperatingSystem.KINDLE3); From 536684ce76a2c199d0fdf1e398751ba12656db79 Mon Sep 17 00:00:00 2001 From: Harald Walker Date: Sat, 18 Oct 2014 01:20:49 +0200 Subject: [PATCH 14/22] Update javadocs with latest additions --- javadoc/allclasses-frame.html | 2 +- javadoc/allclasses-noframe.html | 2 +- javadoc/constant-values.html | 2 +- javadoc/deprecated-list.html | 2 +- .../bitwalker/useragentutils/Application.html | 2 +- .../useragentutils/ApplicationType.html | 2 +- .../eu/bitwalker/useragentutils/Browser.html | 2 +- .../bitwalker/useragentutils/BrowserType.html | 2 +- .../bitwalker/useragentutils/DeviceType.html | 17 ++++++++- .../useragentutils/Manufacturer.html | 2 +- .../useragentutils/OperatingSystem.html | 37 ++++++++++++++++--- .../useragentutils/RenderingEngine.html | 2 +- .../bitwalker/useragentutils/UserAgent.html | 2 +- .../eu/bitwalker/useragentutils/Version.html | 2 +- .../useragentutils/class-use/Application.html | 2 +- .../class-use/ApplicationType.html | 2 +- .../useragentutils/class-use/Browser.html | 2 +- .../useragentutils/class-use/BrowserType.html | 2 +- .../useragentutils/class-use/DeviceType.html | 2 +- .../class-use/Manufacturer.html | 2 +- .../class-use/OperatingSystem.html | 2 +- .../class-use/RenderingEngine.html | 2 +- .../useragentutils/class-use/UserAgent.html | 2 +- .../useragentutils/class-use/Version.html | 2 +- .../useragentutils/package-frame.html | 2 +- .../useragentutils/package-summary.html | 2 +- .../useragentutils/package-tree.html | 2 +- .../bitwalker/useragentutils/package-use.html | 2 +- javadoc/help-doc.html | 2 +- javadoc/index-all.html | 2 +- javadoc/index.html | 2 +- javadoc/overview-tree.html | 2 +- javadoc/serialized-form.html | 2 +- 33 files changed, 79 insertions(+), 37 deletions(-) diff --git a/javadoc/allclasses-frame.html b/javadoc/allclasses-frame.html index dae572a4..aa8feab7 100644 --- a/javadoc/allclasses-frame.html +++ b/javadoc/allclasses-frame.html @@ -2,7 +2,7 @@ - + All Classes (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/allclasses-noframe.html b/javadoc/allclasses-noframe.html index c214b46a..22a31d3c 100644 --- a/javadoc/allclasses-noframe.html +++ b/javadoc/allclasses-noframe.html @@ -2,7 +2,7 @@ - + All Classes (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/constant-values.html b/javadoc/constant-values.html index a107809a..88321c56 100644 --- a/javadoc/constant-values.html +++ b/javadoc/constant-values.html @@ -2,7 +2,7 @@ - + Constant Field Values (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/deprecated-list.html b/javadoc/deprecated-list.html index 920814a8..9323e298 100644 --- a/javadoc/deprecated-list.html +++ b/javadoc/deprecated-list.html @@ -2,7 +2,7 @@ - + Deprecated List (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/Application.html b/javadoc/eu/bitwalker/useragentutils/Application.html index 4865aeee..505ebb0e 100644 --- a/javadoc/eu/bitwalker/useragentutils/Application.html +++ b/javadoc/eu/bitwalker/useragentutils/Application.html @@ -2,7 +2,7 @@ - + Application (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/ApplicationType.html b/javadoc/eu/bitwalker/useragentutils/ApplicationType.html index c9be7760..8b4c694a 100644 --- a/javadoc/eu/bitwalker/useragentutils/ApplicationType.html +++ b/javadoc/eu/bitwalker/useragentutils/ApplicationType.html @@ -2,7 +2,7 @@ - + ApplicationType (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/Browser.html b/javadoc/eu/bitwalker/useragentutils/Browser.html index 11150760..84850563 100644 --- a/javadoc/eu/bitwalker/useragentutils/Browser.html +++ b/javadoc/eu/bitwalker/useragentutils/Browser.html @@ -2,7 +2,7 @@ - + Browser (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/BrowserType.html b/javadoc/eu/bitwalker/useragentutils/BrowserType.html index c7e3a3fe..8829cac4 100644 --- a/javadoc/eu/bitwalker/useragentutils/BrowserType.html +++ b/javadoc/eu/bitwalker/useragentutils/BrowserType.html @@ -2,7 +2,7 @@ - + BrowserType (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/DeviceType.html b/javadoc/eu/bitwalker/useragentutils/DeviceType.html index 7fc06fed..f3363b9e 100644 --- a/javadoc/eu/bitwalker/useragentutils/DeviceType.html +++ b/javadoc/eu/bitwalker/useragentutils/DeviceType.html @@ -2,7 +2,7 @@ - + DeviceType (User-Agent-Utils 1.15-SNAPSHOT API) @@ -157,6 +157,11 @@

    Enum Constant Summary

    Other or unknow type of device.
    + +WEARABLE +
    Miniature device like a smart watch or interactive glasses
    + + @@ -268,6 +273,16 @@

    DMR

    Digital media receiver like the Google TV.
    + + + +
      +
    • +

      WEARABLE

      +
      public static final DeviceType WEARABLE
      +
      Miniature device like a smart watch or interactive glasses
      +
    • +
    diff --git a/javadoc/eu/bitwalker/useragentutils/Manufacturer.html b/javadoc/eu/bitwalker/useragentutils/Manufacturer.html index 0c746572..ceb3531c 100644 --- a/javadoc/eu/bitwalker/useragentutils/Manufacturer.html +++ b/javadoc/eu/bitwalker/useragentutils/Manufacturer.html @@ -2,7 +2,7 @@ - + Manufacturer (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html b/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html index 2415eafc..88ef513c 100644 --- a/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html +++ b/javadoc/eu/bitwalker/useragentutils/OperatingSystem.html @@ -2,7 +2,7 @@ - + OperatingSystem (User-Agent-Utils 1.15-SNAPSHOT API) @@ -159,24 +159,32 @@

    Enum Constant Summary

    ANDROID4_TABLET  +ANDROID4_WEARABLE  + + BADA
    Bada is a mobile operating system being developed by Samsung Electronics.
    - + BLACKBERRY
    BlackBerryOS.
    - + BLACKBERRY_TABLET  - + BLACKBERRY6  - + BLACKBERRY7  + +CHROME_OS +
    Chrome OS by Google, mostly used on Chromebooks and Chromeboxes
    + + GOOGLE_TV
    Google TV uses Android 2.x or 3.x but doesn't identify itself as Android.
    @@ -609,6 +617,15 @@

    ANDROID4_TABLET

    public static final OperatingSystem ANDROID4_TABLET
    + + + +
      +
    • +

      ANDROID4_WEARABLE

      +
      public static final OperatingSystem ANDROID4_WEARABLE
      +
    • +
    @@ -665,6 +682,16 @@

    ANDROID_TABLET

    Generic Android tablet device without OS version number information
    + + + +
      +
    • +

      CHROME_OS

      +
      public static final OperatingSystem CHROME_OS
      +
      Chrome OS by Google, mostly used on Chromebooks and Chromeboxes
      +
    • +
    diff --git a/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html b/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html index 50df2f77..7a828924 100644 --- a/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html +++ b/javadoc/eu/bitwalker/useragentutils/RenderingEngine.html @@ -2,7 +2,7 @@ - + RenderingEngine (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/UserAgent.html b/javadoc/eu/bitwalker/useragentutils/UserAgent.html index 4ec2cb0e..ec6cb26d 100644 --- a/javadoc/eu/bitwalker/useragentutils/UserAgent.html +++ b/javadoc/eu/bitwalker/useragentutils/UserAgent.html @@ -2,7 +2,7 @@ - + UserAgent (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/Version.html b/javadoc/eu/bitwalker/useragentutils/Version.html index c18e888b..a544be1f 100644 --- a/javadoc/eu/bitwalker/useragentutils/Version.html +++ b/javadoc/eu/bitwalker/useragentutils/Version.html @@ -2,7 +2,7 @@ - + Version (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Application.html b/javadoc/eu/bitwalker/useragentutils/class-use/Application.html index 1ccf7c90..005aca95 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Application.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Application.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.Application (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html b/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html index baa8b322..1e5a0217 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/ApplicationType.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.ApplicationType (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html b/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html index d1f16ef5..f8051afd 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Browser.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.Browser (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html b/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html index 2c662316..888c548f 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/BrowserType.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.BrowserType (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html b/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html index 2954c14d..f12962a0 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/DeviceType.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.DeviceType (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html b/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html index 6c9272f5..592ce16a 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Manufacturer.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.Manufacturer (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html b/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html index e00af0f1..c4739b61 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/OperatingSystem.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.OperatingSystem (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html b/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html index a5a4159f..521a9838 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/RenderingEngine.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.RenderingEngine (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html b/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html index d0feeaf6..d830819f 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/UserAgent.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.UserAgent (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/class-use/Version.html b/javadoc/eu/bitwalker/useragentutils/class-use/Version.html index 0e5f894d..9118cc72 100644 --- a/javadoc/eu/bitwalker/useragentutils/class-use/Version.html +++ b/javadoc/eu/bitwalker/useragentutils/class-use/Version.html @@ -2,7 +2,7 @@ - + Uses of Class eu.bitwalker.useragentutils.Version (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/package-frame.html b/javadoc/eu/bitwalker/useragentutils/package-frame.html index b4c5ff0f..777234d1 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-frame.html +++ b/javadoc/eu/bitwalker/useragentutils/package-frame.html @@ -2,7 +2,7 @@ - + eu.bitwalker.useragentutils (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/package-summary.html b/javadoc/eu/bitwalker/useragentutils/package-summary.html index e46cde31..68f503bd 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-summary.html +++ b/javadoc/eu/bitwalker/useragentutils/package-summary.html @@ -2,7 +2,7 @@ - + eu.bitwalker.useragentutils (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/package-tree.html b/javadoc/eu/bitwalker/useragentutils/package-tree.html index 9acfb14b..fd57168e 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-tree.html +++ b/javadoc/eu/bitwalker/useragentutils/package-tree.html @@ -2,7 +2,7 @@ - + eu.bitwalker.useragentutils Class Hierarchy (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/eu/bitwalker/useragentutils/package-use.html b/javadoc/eu/bitwalker/useragentutils/package-use.html index c55d4321..e37bda2d 100644 --- a/javadoc/eu/bitwalker/useragentutils/package-use.html +++ b/javadoc/eu/bitwalker/useragentutils/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package eu.bitwalker.useragentutils (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/help-doc.html b/javadoc/help-doc.html index d3eef3e1..ca9299da 100644 --- a/javadoc/help-doc.html +++ b/javadoc/help-doc.html @@ -2,7 +2,7 @@ - + API Help (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/index-all.html b/javadoc/index-all.html index 0ddc246e..3ef6164c 100644 --- a/javadoc/index-all.html +++ b/javadoc/index-all.html @@ -2,7 +2,7 @@ - + Index (User-Agent-Utils 1.15-SNAPSHOT API) diff --git a/javadoc/index.html b/javadoc/index.html index b2e86eec..bf490afa 100644 --- a/javadoc/index.html +++ b/javadoc/index.html @@ -2,7 +2,7 @@ - + User-Agent-Utils 1.15-SNAPSHOT API