├── nbproject └── project.properties ├── .gitignore ├── target ├── apidocs │ ├── element-list │ ├── resources │ │ ├── x.png │ │ └── glass.png │ ├── type-search-index.zip │ ├── member-search-index.zip │ ├── package-search-index.zip │ ├── package-search-index.js │ ├── type-search-index.js │ ├── jquery │ │ ├── images │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── jszip-utils │ │ │ └── dist │ │ │ │ ├── jszip-utils-ie.min.js │ │ │ │ ├── jszip-utils.min.js │ │ │ │ ├── jszip-utils-ie.js │ │ │ │ └── jszip-utils.js │ │ ├── jquery-ui.structure.min.css │ │ └── jquery-ui.structure.css │ ├── index.html │ ├── allclasses.html │ ├── deprecated-list.html │ ├── constant-values.html │ ├── com │ │ └── paralleldots │ │ │ └── paralleldots │ │ │ ├── package-use.html │ │ │ ├── class-use │ │ │ └── App.html │ │ │ ├── package-tree.html │ │ │ └── package-summary.html │ ├── allclasses-index.html │ ├── overview-tree.html │ ├── allpackages-index.html │ ├── member-search-index.js │ ├── script.js │ ├── help-doc.html │ └── search.js ├── site │ ├── css │ │ ├── site.css │ │ ├── print.css │ │ ├── maven-base.css │ │ └── maven-theme.css │ ├── images │ │ ├── close.gif │ │ ├── expanded.gif │ │ ├── external.png │ │ ├── collapsed.gif │ │ ├── newwindow.png │ │ ├── icon_info_sml.gif │ │ ├── icon_error_sml.gif │ │ ├── icon_success_sml.gif │ │ ├── icon_warning_sml.gif │ │ └── logos │ │ │ ├── maven-feather.png │ │ │ ├── build-by-maven-black.png │ │ │ └── build-by-maven-white.png │ ├── index.html │ ├── licenses.html │ ├── distribution-management.html │ ├── plugin-management.html │ ├── summary.html │ ├── team.html │ ├── scm.html │ ├── dependency-info.html │ ├── project-info.html │ └── plugins.html ├── paralleldots-1.0.3.jar ├── maven-status │ └── maven-compiler-plugin │ │ ├── testCompile │ │ └── default-testCompile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst ├── paralleldots-1.0.3-javadoc.jar ├── paralleldots-1.0.3-sources.jar ├── maven-archiver │ └── pom.properties ├── classes │ └── com │ │ └── paralleldots │ │ └── paralleldots │ │ ├── App.class │ │ └── App$SavingTrustManager.class ├── test-classes │ └── com │ │ └── paralleldots │ │ └── paralleldots │ │ └── AppTest.class ├── nexus-staging │ └── staging │ │ ├── 573cfbe0792e84 │ │ ├── com │ │ │ └── paralleldots │ │ │ │ └── paralleldots │ │ │ │ ├── 1.0.3 │ │ │ │ ├── paralleldots-1.0.3.jar │ │ │ │ ├── paralleldots-1.0.3-javadoc.jar │ │ │ │ ├── paralleldots-1.0.3-sources.jar │ │ │ │ ├── paralleldots-1.0.3.jar.asc │ │ │ │ ├── paralleldots-1.0.3.pom.asc │ │ │ │ ├── paralleldots-1.0.3-javadoc.jar.asc │ │ │ │ ├── paralleldots-1.0.3-sources.jar.asc │ │ │ │ └── paralleldots-1.0.3.pom │ │ │ │ └── maven-metadata-nexus.xml │ │ └── .index │ │ └── 573cfbe0792e84.properties ├── javadoc-bundle-options │ ├── javadoc-options-javadoc-resources.xml │ └── package-list ├── paralleldots-1.0.3.jar.asc ├── paralleldots-1.0.3.pom.asc ├── paralleldots-1.0.3-javadoc.jar.asc ├── paralleldots-1.0.3-sources.jar.asc └── paralleldots-1.0.3.pom ├── src └── test │ └── java │ └── com │ └── paralleldots │ └── paralleldots │ └── AppTest.java ├── pom.xml.versionsBackup ├── pom.xml └── README.md /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/* 2 | build/built-jar.properties 3 | -------------------------------------------------------------------------------- /target/apidocs/element-list: -------------------------------------------------------------------------------- 1 | com.paralleldots.paralleldots 2 | -------------------------------------------------------------------------------- /target/site/css/site.css: -------------------------------------------------------------------------------- 1 | /* You can override this file with your own styles */ -------------------------------------------------------------------------------- /target/paralleldots-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/paralleldots-1.0.3.jar -------------------------------------------------------------------------------- /target/site/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/close.gif -------------------------------------------------------------------------------- /target/apidocs/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/resources/x.png -------------------------------------------------------------------------------- /target/site/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/expanded.gif -------------------------------------------------------------------------------- /target/site/images/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/external.png -------------------------------------------------------------------------------- /target/apidocs/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/resources/glass.png -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | com/paralleldots/paralleldots/AppTest.class 2 | -------------------------------------------------------------------------------- /target/site/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/collapsed.gif -------------------------------------------------------------------------------- /target/site/images/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/newwindow.png -------------------------------------------------------------------------------- /target/apidocs/type-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/type-search-index.zip -------------------------------------------------------------------------------- /target/site/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/icon_info_sml.gif -------------------------------------------------------------------------------- /target/apidocs/member-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/member-search-index.zip -------------------------------------------------------------------------------- /target/apidocs/package-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/package-search-index.zip -------------------------------------------------------------------------------- /target/paralleldots-1.0.3-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/paralleldots-1.0.3-javadoc.jar -------------------------------------------------------------------------------- /target/paralleldots-1.0.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/paralleldots-1.0.3-sources.jar -------------------------------------------------------------------------------- /target/site/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/icon_error_sml.gif -------------------------------------------------------------------------------- /target/site/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/icon_success_sml.gif -------------------------------------------------------------------------------- /target/site/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /target/apidocs/package-search-index.js: -------------------------------------------------------------------------------- 1 | packageSearchIndex = [{"l":"All Packages","url":"allpackages-index.html"},{"l":"com.paralleldots.paralleldots"}] -------------------------------------------------------------------------------- /target/apidocs/type-search-index.js: -------------------------------------------------------------------------------- 1 | typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"com.paralleldots.paralleldots","l":"App"}] -------------------------------------------------------------------------------- /target/site/images/logos/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/logos/maven-feather.png -------------------------------------------------------------------------------- /target/site/images/logos/build-by-maven-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/logos/build-by-maven-black.png -------------------------------------------------------------------------------- /target/site/images/logos/build-by-maven-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/site/images/logos/build-by-maven-white.png -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Wed Jan 27 11:32:52 IST 2021 3 | groupId=com.paralleldots 4 | artifactId=paralleldots 5 | version=1.0.3 6 | -------------------------------------------------------------------------------- /target/classes/com/paralleldots/paralleldots/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/classes/com/paralleldots/paralleldots/App.class -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-bg_glass_65_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-bg_glass_65_dadada_1x400.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | com/paralleldots/paralleldots/App$SavingTrustManager.class 2 | com/paralleldots/paralleldots/App.class 3 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | /home/akash/Paralleldots/API Wrappers/ParallelDots-Java-API/src/main/java/com/paralleldots/paralleldots/App.java 2 | -------------------------------------------------------------------------------- /target/test-classes/com/paralleldots/paralleldots/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/test-classes/com/paralleldots/paralleldots/AppTest.class -------------------------------------------------------------------------------- /target/apidocs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/apidocs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | /home/akash/Paralleldots/API Wrappers/ParallelDots-Java-API/src/test/java/com/paralleldots/paralleldots/AppTest.java 2 | -------------------------------------------------------------------------------- /target/classes/com/paralleldots/paralleldots/App$SavingTrustManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/classes/com/paralleldots/paralleldots/App$SavingTrustManager.class -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.jar -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-javadoc.jar -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/ParallelDots-Java-API/HEAD/target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-sources.jar -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84.properties: -------------------------------------------------------------------------------- 1 | #Generated by org.sonatype.plugins:nexus-staging-maven-plugin:1.6.7 2 | #Wed Jan 27 11:40:49 IST 2021 3 | stagingRepository.id=comparalleldots-1032 4 | stagingRepository.url=https\://oss.sonatype.org\:443/content/repositories/comparalleldots-1032 5 | stagingRepository.profileId=573cfbe0792e84 6 | stagingRepository.managed=true 7 | -------------------------------------------------------------------------------- /target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | src/main/javadoc 10 | 11 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/maven-metadata-nexus.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.paralleldots 4 | paralleldots 5 | 6 | 1.0.3 7 | 8 | 1.0.3 9 | 10 | 20210127060956 11 | 12 | 13 | -------------------------------------------------------------------------------- /target/paralleldots-1.0.3.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA6wACgkQ9jXzELrB 4 | qhodnwwAmKMSyLv7MjB7L5d3AXtrDQkGzZGYm59IkF08yTLaWtgvfJeahKbxRi9l 5 | YoUgbpclT2xYVzkN7L3pqjrNVh6saeVYFkaho07LPRf7suQqpm45EPsW2mptWF9S 6 | XEl73BwHcJvD5WElU16i/rIVE9SOIuI56mmXJ40HugblL7T7KELtOfQoIyrzgaKr 7 | AsjWpn74K7RVA5nMd1HwGJkvI7MnYXUjpuws+XMkqe2Warg+4XVyXOVxmXcyGKmY 8 | Rqll3xEYg9ogVx8szb2bKJUXg6HHbyFjBOUbPG8x/aCuDbOyaoDMakN1EF9P9/Wg 9 | r5UtUck8nkDnzbqZf521rUg8qVk7VcuCh/N0BACZ9X8EQzVxbEOOJqhLqTpBb9Vd 10 | kKK1t6AKR6JynCc9+H3+Sx4l4kdb7Aj0FaOq7jHz4gWl6K2DgLKY4uuuFmiMxxcg 11 | XfOXTI1YT86hJTzM9qS9WWTl2HFpAW8Z5Vj1/dc/pRD28zaf3HeeAYtbIVlFSQX3 12 | Vg+nLSvf 13 | =v+ia 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/paralleldots-1.0.3.pom.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA6wACgkQ9jXzELrB 4 | qhr8RgwAl0A+ZsPCsCqGekb/AhEsYXVS0xuajNh8SVI9PpPAIQHgTYYohftn+LBU 5 | VDUguR2H2XdDKgzZEcBASccPdANVMzUvw5Xj+ncIPYVlk11QJOHiKCZryfcezdn4 6 | d/XKyVzhR+gLmbICiW6xBxPcqN0hIzkJgxbr08B0RLLfz9H53G3EqsVKBpHAI6Nz 7 | FaJZskgoMnD2y7/n9luAOh6IKoCprNwu+XHKje1N6XcYupi+SfjBNqpHE348Q6PT 8 | jwUBIXSG3spC4MVujknKT9WZNhulqVJB26pxp8N19Ojj0T43MTN8C7eKJIH0eCvJ 9 | GYVCJ2IFK3uTIhVqcYqbbkYsUOrVSsk8gBUmtGqKT+ETz9atyWZ8JCYHzHaruwzK 10 | T3mfZZbjO1ko7FWCSv+uqbjAb5nfzGof/C++JlP0frUZsxLTfYJfXRRkfNjxPm1m 11 | 7st7zur6FIHgI6FCqLCoGXQa8bSJf4JvuvJyubx/9SXprILDq2z5wCllM8eVBzty 12 | oQGkESJJ 13 | =7IEM 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/paralleldots-1.0.3-javadoc.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA60ACgkQ9jXzELrB 4 | qhofXAv+KBh/unE3PDBENndeMMaq5Bmz5Y1zvJzFpu8g7ra3UQ6+cGcpZIRJqBIK 5 | rFkoUkjIuRVW0P7n82G6xxa80kiciQi176+s1DEdUae0ris9raDthnAVvMZMfyv3 6 | SVnbNMYNCu6WMBQZNOJD3tLiFFNYwIUhD8gDDJ2TSUWV1CZ2cMQcfPIIxsxwpM/O 7 | RoanRq2pPSc0QTn9YTEkpFdz05pqAo3xo6eVTVgqoVKBxdma/l2hZLqd3SLysrAF 8 | SgmRMDlFummHi2KTAKA9Vyuuyf6mdO3hRUp1rsM+7RRyAD6kU7tJ6hpMd0j6Qum4 9 | 17hj4iB/VtgvwqTm6faZeM2RsUK75Qe8CMZflrArMWCN2E5Ik00RJhzLPVoKJWnc 10 | Fw6kFV26e3PCqbqGPyBnvP1EfKTwFD1y1Qum2mK5TeqFK5t7wiqzHc7NUtTkqIJM 11 | IohcCiXOKjrHTyImKHvxA2TP60qIzYcifcgz1+Qrl3LJAI0PFuJXZOSDf7UnS8fF 12 | eUSRdTpM 13 | =Fixk 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/paralleldots-1.0.3-sources.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA6wACgkQ9jXzELrB 4 | qhq0MAv8CMAL1Q86Me9cCC35YQhsVM/srxLKdHJj+bK41u9275xLpXXhqeB1iqN+ 5 | XUI/Kz+caU41p2xxqQGOdOI8E611D2ZnNg8byHH20CBm/Ah+0Xuz9vh013XdDDqr 6 | megchicHxsEysP+yq2OYnfHUG8HCPG4RCEK1jCh2fYsK45CuamZXrD/LVvLMbMHO 7 | KOzEE2jkHMWZa+hdCHfaWhr704K/H64+iKwYj5cN/YRkQxwxSh5kqKeKxe0FLz8e 8 | fukydIxugERH+tDi5dNlT6xj3ApF8i09vuF6mtfKH5834zqQ87bwbOQzoM3F3EES 9 | JYllz9uxGYvLArvSwnYTzyzYNFSxqRnVkg6YHmTsNS2Ou4EYoLLpJSvOp++SmzSJ 10 | LsmWIE0NDOdsyk2KTu27FuQxde+Tbbs8iUwPB7iPrRWy9a/WUEtoKw/ZdUuq0M9R 11 | MQuiTWfg+3iM5mqp1tn5C4ElTbzePBjxyN3HaLxiHA82d20n8OLeYR4NfYzZ/J1j 12 | zrREIcqK 13 | =A7L1 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA6wACgkQ9jXzELrB 4 | qhodnwwAmKMSyLv7MjB7L5d3AXtrDQkGzZGYm59IkF08yTLaWtgvfJeahKbxRi9l 5 | YoUgbpclT2xYVzkN7L3pqjrNVh6saeVYFkaho07LPRf7suQqpm45EPsW2mptWF9S 6 | XEl73BwHcJvD5WElU16i/rIVE9SOIuI56mmXJ40HugblL7T7KELtOfQoIyrzgaKr 7 | AsjWpn74K7RVA5nMd1HwGJkvI7MnYXUjpuws+XMkqe2Warg+4XVyXOVxmXcyGKmY 8 | Rqll3xEYg9ogVx8szb2bKJUXg6HHbyFjBOUbPG8x/aCuDbOyaoDMakN1EF9P9/Wg 9 | r5UtUck8nkDnzbqZf521rUg8qVk7VcuCh/N0BACZ9X8EQzVxbEOOJqhLqTpBb9Vd 10 | kKK1t6AKR6JynCc9+H3+Sx4l4kdb7Aj0FaOq7jHz4gWl6K2DgLKY4uuuFmiMxxcg 11 | XfOXTI1YT86hJTzM9qS9WWTl2HFpAW8Z5Vj1/dc/pRD28zaf3HeeAYtbIVlFSQX3 12 | Vg+nLSvf 13 | =v+ia 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.pom.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA6wACgkQ9jXzELrB 4 | qhr8RgwAl0A+ZsPCsCqGekb/AhEsYXVS0xuajNh8SVI9PpPAIQHgTYYohftn+LBU 5 | VDUguR2H2XdDKgzZEcBASccPdANVMzUvw5Xj+ncIPYVlk11QJOHiKCZryfcezdn4 6 | d/XKyVzhR+gLmbICiW6xBxPcqN0hIzkJgxbr08B0RLLfz9H53G3EqsVKBpHAI6Nz 7 | FaJZskgoMnD2y7/n9luAOh6IKoCprNwu+XHKje1N6XcYupi+SfjBNqpHE348Q6PT 8 | jwUBIXSG3spC4MVujknKT9WZNhulqVJB26pxp8N19Ojj0T43MTN8C7eKJIH0eCvJ 9 | GYVCJ2IFK3uTIhVqcYqbbkYsUOrVSsk8gBUmtGqKT+ETz9atyWZ8JCYHzHaruwzK 10 | T3mfZZbjO1ko7FWCSv+uqbjAb5nfzGof/C++JlP0frUZsxLTfYJfXRRkfNjxPm1m 11 | 7st7zur6FIHgI6FCqLCoGXQa8bSJf4JvuvJyubx/9SXprILDq2z5wCllM8eVBzty 12 | oQGkESJJ 13 | =7IEM 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-javadoc.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA60ACgkQ9jXzELrB 4 | qhofXAv+KBh/unE3PDBENndeMMaq5Bmz5Y1zvJzFpu8g7ra3UQ6+cGcpZIRJqBIK 5 | rFkoUkjIuRVW0P7n82G6xxa80kiciQi176+s1DEdUae0ris9raDthnAVvMZMfyv3 6 | SVnbNMYNCu6WMBQZNOJD3tLiFFNYwIUhD8gDDJ2TSUWV1CZ2cMQcfPIIxsxwpM/O 7 | RoanRq2pPSc0QTn9YTEkpFdz05pqAo3xo6eVTVgqoVKBxdma/l2hZLqd3SLysrAF 8 | SgmRMDlFummHi2KTAKA9Vyuuyf6mdO3hRUp1rsM+7RRyAD6kU7tJ6hpMd0j6Qum4 9 | 17hj4iB/VtgvwqTm6faZeM2RsUK75Qe8CMZflrArMWCN2E5Ik00RJhzLPVoKJWnc 10 | Fw6kFV26e3PCqbqGPyBnvP1EfKTwFD1y1Qum2mK5TeqFK5t7wiqzHc7NUtTkqIJM 11 | IohcCiXOKjrHTyImKHvxA2TP60qIzYcifcgz1+Qrl3LJAI0PFuJXZOSDf7UnS8fF 12 | eUSRdTpM 13 | =Fixk 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-sources.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | 3 | iQGzBAABCgAdFiEEi1PTJvEjbkY8u2eP9jXzELrBqhoFAmARA6wACgkQ9jXzELrB 4 | qhq0MAv8CMAL1Q86Me9cCC35YQhsVM/srxLKdHJj+bK41u9275xLpXXhqeB1iqN+ 5 | XUI/Kz+caU41p2xxqQGOdOI8E611D2ZnNg8byHH20CBm/Ah+0Xuz9vh013XdDDqr 6 | megchicHxsEysP+yq2OYnfHUG8HCPG4RCEK1jCh2fYsK45CuamZXrD/LVvLMbMHO 7 | KOzEE2jkHMWZa+hdCHfaWhr704K/H64+iKwYj5cN/YRkQxwxSh5kqKeKxe0FLz8e 8 | fukydIxugERH+tDi5dNlT6xj3ApF8i09vuF6mtfKH5834zqQ87bwbOQzoM3F3EES 9 | JYllz9uxGYvLArvSwnYTzyzYNFSxqRnVkg6YHmTsNS2Ou4EYoLLpJSvOp++SmzSJ 10 | LsmWIE0NDOdsyk2KTu27FuQxde+Tbbs8iUwPB7iPrRWy9a/WUEtoKw/ZdUuq0M9R 11 | MQuiTWfg+3iM5mqp1tn5C4ElTbzePBjxyN3HaLxiHA82d20n8OLeYR4NfYzZ/J1j 12 | zrREIcqK 13 | =A7L1 14 | -----END PGP SIGNATURE----- 15 | -------------------------------------------------------------------------------- /target/apidocs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs 1.0.3 API 7 | 8 | 9 | 12 | 13 | 14 | 15 | 16 |
17 | 20 |

com/paralleldots/paralleldots/package-summary.html

21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/.index: -------------------------------------------------------------------------------- 1 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.jar=com.paralleldots:paralleldots:1.0.3:n/a:jar:jar:paralleldots-1.0.3.pom:n/a:n/a:n/a 2 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-sources.jar=com.paralleldots:paralleldots:1.0.3:sources:java-source:jar:n/a:n/a:n/a:n/a 3 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-javadoc.jar=com.paralleldots:paralleldots:1.0.3:javadoc:javadoc:jar:n/a:n/a:n/a:n/a 4 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.jar.asc=com.paralleldots:paralleldots:1.0.3:n/a:jar.asc:jar.asc:n/a:n/a:n/a:n/a 5 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.pom.asc=com.paralleldots:paralleldots:1.0.3:n/a:pom.asc:pom.asc:n/a:n/a:n/a:n/a 6 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-sources.jar.asc=com.paralleldots:paralleldots:1.0.3:sources:jar.asc:jar.asc:n/a:n/a:n/a:n/a 7 | com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3-javadoc.jar.asc=com.paralleldots:paralleldots:1.0.3:javadoc:jar.asc:jar.asc:n/a:n/a:n/a:n/a 8 | -------------------------------------------------------------------------------- /src/test/java/com/paralleldots/paralleldots/AppTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this license header, choose License Headers in Project Properties. 3 | * To change this template file, choose Tools | Templates 4 | * and open the template in the editor. 5 | */ 6 | package com.paralleldots.paralleldots; 7 | 8 | import org.junit.After; 9 | import org.junit.AfterClass; 10 | import org.junit.Before; 11 | import org.junit.BeforeClass; 12 | import org.junit.Test; 13 | import static org.junit.Assert.*; 14 | 15 | /** 16 | * 17 | * @author vaibh91 18 | */ 19 | public class AppTest { 20 | 21 | public AppTest() { 22 | } 23 | 24 | @BeforeClass 25 | public static void setUpClass() { 26 | } 27 | 28 | @AfterClass 29 | public static void tearDownClass() { 30 | } 31 | 32 | @Before 33 | public void setUp() { 34 | } 35 | 36 | @After 37 | public void tearDown() { 38 | } 39 | 40 | // TODO add test methods here. 41 | // The methods must be annotated with annotation @Test. For example: 42 | // 43 | // @Test 44 | // public void hello() {} 45 | } 46 | -------------------------------------------------------------------------------- /target/site/css/print.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | #banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn { 21 | display: none !important; 22 | } 23 | #bodyColumn, body.docs div.docs { 24 | margin: 0 !important; 25 | border: none !important 26 | } 27 | -------------------------------------------------------------------------------- /target/apidocs/allclasses.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 |

All Classes

22 |
23 | 26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /target/apidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | JSZipUtils - A collection of cross-browser utilities to go along with JSZip. 4 | 5 | 6 | (c) 2014 Stuart Knightley, David Duponchel 7 | Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. 8 | 9 | */ 10 | !function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); 11 | -------------------------------------------------------------------------------- /target/apidocs/jquery/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.12.1 - 2018-12-06 2 | * http://jqueryui.com 3 | * Copyright jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} -------------------------------------------------------------------------------- /target/apidocs/jquery/jszip-utils/dist/jszip-utils.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | JSZipUtils - A collection of cross-browser utilities to go along with JSZip. 4 | 5 | 6 | (c) 2014 Stuart Knightley, David Duponchel 7 | Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. 8 | 9 | */ 10 | !function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g 5 | 6 | (c) 2014 Stuart Knightley, David Duponchel 7 | Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. 8 | 9 | */ 10 | ;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o\r\n"+ 18 | "\r\n"; 32 | 33 | // inject VBScript 34 | document.write(IEBinaryToArray_ByteStr_Script); 35 | 36 | global.JSZipUtils._getBinaryFromXHR = function (xhr) { 37 | var binary = xhr.responseBody; 38 | var byteMapping = {}; 39 | for ( var i = 0; i < 256; i++ ) { 40 | for ( var j = 0; j < 256; j++ ) { 41 | byteMapping[ String.fromCharCode( i + (j << 8) ) ] = 42 | String.fromCharCode(i) + String.fromCharCode(j); 43 | } 44 | } 45 | var rawBytes = IEBinaryToArray_ByteStr(binary); 46 | var lastChr = IEBinaryToArray_ByteStr_Last(binary); 47 | return rawBytes.replace(/[\s\S]/g, function( match ) { 48 | return byteMapping[match]; 49 | }) + lastChr; 50 | }; 51 | 52 | // enforcing Stuk's coding style 53 | // vim: set shiftwidth=4 softtabstop=4: 54 | 55 | },{}]},{},[1]) 56 | ; 57 | -------------------------------------------------------------------------------- /target/apidocs/jquery/jquery-ui.structure.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.12.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { 14 | display: none; 15 | } 16 | .ui-helper-hidden-accessible { 17 | border: 0; 18 | clip: rect(0 0 0 0); 19 | height: 1px; 20 | margin: -1px; 21 | overflow: hidden; 22 | padding: 0; 23 | position: absolute; 24 | width: 1px; 25 | } 26 | .ui-helper-reset { 27 | margin: 0; 28 | padding: 0; 29 | border: 0; 30 | outline: 0; 31 | line-height: 1.3; 32 | text-decoration: none; 33 | font-size: 100%; 34 | list-style: none; 35 | } 36 | .ui-helper-clearfix:before, 37 | .ui-helper-clearfix:after { 38 | content: ""; 39 | display: table; 40 | border-collapse: collapse; 41 | } 42 | .ui-helper-clearfix:after { 43 | clear: both; 44 | } 45 | .ui-helper-zfix { 46 | width: 100%; 47 | height: 100%; 48 | top: 0; 49 | left: 0; 50 | position: absolute; 51 | opacity: 0; 52 | filter:Alpha(Opacity=0); /* support: IE8 */ 53 | } 54 | 55 | .ui-front { 56 | z-index: 100; 57 | } 58 | 59 | 60 | /* Interaction Cues 61 | ----------------------------------*/ 62 | .ui-state-disabled { 63 | cursor: default !important; 64 | pointer-events: none; 65 | } 66 | 67 | 68 | /* Icons 69 | ----------------------------------*/ 70 | .ui-icon { 71 | display: inline-block; 72 | vertical-align: middle; 73 | margin-top: -.25em; 74 | position: relative; 75 | text-indent: -99999px; 76 | overflow: hidden; 77 | background-repeat: no-repeat; 78 | } 79 | 80 | .ui-widget-icon-block { 81 | left: 50%; 82 | margin-left: -8px; 83 | display: block; 84 | } 85 | 86 | /* Misc visuals 87 | ----------------------------------*/ 88 | 89 | /* Overlays */ 90 | .ui-widget-overlay { 91 | position: fixed; 92 | top: 0; 93 | left: 0; 94 | width: 100%; 95 | height: 100%; 96 | } 97 | .ui-autocomplete { 98 | position: absolute; 99 | top: 0; 100 | left: 0; 101 | cursor: default; 102 | } 103 | .ui-menu { 104 | list-style: none; 105 | padding: 0; 106 | margin: 0; 107 | display: block; 108 | outline: 0; 109 | } 110 | .ui-menu .ui-menu { 111 | position: absolute; 112 | } 113 | .ui-menu .ui-menu-item { 114 | margin: 0; 115 | cursor: pointer; 116 | /* support: IE10, see #8844 */ 117 | list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); 118 | } 119 | .ui-menu .ui-menu-item-wrapper { 120 | position: relative; 121 | padding: 3px 1em 3px .4em; 122 | } 123 | .ui-menu .ui-menu-divider { 124 | margin: 5px 0; 125 | height: 0; 126 | font-size: 0; 127 | line-height: 0; 128 | border-width: 1px 0 0 0; 129 | } 130 | .ui-menu .ui-state-focus, 131 | .ui-menu .ui-state-active { 132 | margin: -1px; 133 | } 134 | 135 | /* icon support */ 136 | .ui-menu-icons { 137 | position: relative; 138 | } 139 | .ui-menu-icons .ui-menu-item-wrapper { 140 | padding-left: 2em; 141 | } 142 | 143 | /* left-aligned */ 144 | .ui-menu .ui-icon { 145 | position: absolute; 146 | top: 0; 147 | bottom: 0; 148 | left: .2em; 149 | margin: auto 0; 150 | } 151 | 152 | /* right-aligned */ 153 | .ui-menu .ui-menu-icon { 154 | left: auto; 155 | right: 0; 156 | } 157 | -------------------------------------------------------------------------------- /target/site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – About 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

About Paralleldots AI APIs

62 |

A Java Wrapper for using Paralleldots AI APIs.

63 |
64 |
65 |
66 |
67 |
68 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /target/site/licenses.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Licenses 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Overview

62 |

Typically the licenses listed for the project are that of the project itself, and not of dependencies.

63 |
64 |

Project Licenses

65 |
66 |

MIT License

[Original text] 67 |

Copy of the license follows:

68 |

301 Moved Permanently

69 |
nginx/1.14.0 (Ubuntu)
70 |
71 |
72 |
73 |
74 |
75 |
76 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /target/site/css/maven-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | body { 21 | margin: 0px; 22 | padding: 0px; 23 | } 24 | table { 25 | padding:0px; 26 | width: 100%; 27 | margin-left: -2px; 28 | margin-right: -2px; 29 | } 30 | acronym { 31 | cursor: help; 32 | border-bottom: 1px dotted #feb; 33 | } 34 | table.bodyTable th, table.bodyTable td { 35 | padding: 2px 4px 2px 4px; 36 | vertical-align: top; 37 | } 38 | div.clear{ 39 | clear:both; 40 | visibility: hidden; 41 | } 42 | div.clear hr{ 43 | display: none; 44 | } 45 | #bannerLeft, #bannerRight { 46 | font-size: xx-large; 47 | font-weight: bold; 48 | } 49 | #bannerLeft img, #bannerRight img { 50 | margin: 0px; 51 | } 52 | .xleft, #bannerLeft img { 53 | float:left; 54 | } 55 | .xright, #bannerRight { 56 | float:right; 57 | } 58 | #banner { 59 | padding: 0px; 60 | } 61 | #breadcrumbs { 62 | padding: 3px 10px 3px 10px; 63 | } 64 | #leftColumn { 65 | width: 170px; 66 | float:left; 67 | overflow: auto; 68 | } 69 | #bodyColumn { 70 | margin-right: 1.5em; 71 | margin-left: 197px; 72 | } 73 | #legend { 74 | padding: 8px 0 8px 0; 75 | } 76 | #navcolumn { 77 | padding: 8px 4px 0 8px; 78 | } 79 | #navcolumn h5 { 80 | margin: 0; 81 | padding: 0; 82 | font-size: small; 83 | } 84 | #navcolumn ul { 85 | margin: 0; 86 | padding: 0; 87 | font-size: small; 88 | } 89 | #navcolumn li { 90 | list-style-type: none; 91 | background-image: none; 92 | background-repeat: no-repeat; 93 | background-position: 0 0.4em; 94 | padding-left: 16px; 95 | list-style-position: outside; 96 | line-height: 1.2em; 97 | font-size: smaller; 98 | } 99 | #navcolumn li.expanded { 100 | background-image: url(../images/expanded.gif); 101 | } 102 | #navcolumn li.collapsed { 103 | background-image: url(../images/collapsed.gif); 104 | } 105 | #navcolumn li.none { 106 | text-indent: -1em; 107 | margin-left: 1em; 108 | } 109 | #poweredBy { 110 | text-align: center; 111 | } 112 | #navcolumn img { 113 | margin-top: 10px; 114 | margin-bottom: 3px; 115 | } 116 | #poweredBy img { 117 | display:block; 118 | margin: 20px 0 20px 17px; 119 | } 120 | #search img { 121 | margin: 0px; 122 | display: block; 123 | } 124 | #search #q, #search #btnG { 125 | border: 1px solid #999; 126 | margin-bottom:10px; 127 | } 128 | #search form { 129 | margin: 0px; 130 | } 131 | #lastPublished { 132 | font-size: x-small; 133 | } 134 | .navSection { 135 | margin-bottom: 2px; 136 | padding: 8px; 137 | } 138 | .navSectionHead { 139 | font-weight: bold; 140 | font-size: x-small; 141 | } 142 | .section { 143 | padding: 4px; 144 | } 145 | #footer { 146 | padding: 3px 10px 3px 10px; 147 | font-size: x-small; 148 | } 149 | #breadcrumbs { 150 | font-size: x-small; 151 | margin: 0pt; 152 | } 153 | .source { 154 | padding: 12px; 155 | margin: 1em 7px 1em 7px; 156 | } 157 | .source pre { 158 | margin: 0px; 159 | padding: 0px; 160 | } 161 | #navcolumn img.imageLink, .imageLink { 162 | padding-left: 0px; 163 | padding-bottom: 0px; 164 | padding-top: 0px; 165 | padding-right: 2px; 166 | border: 0px; 167 | margin: 0px; 168 | } 169 | -------------------------------------------------------------------------------- /target/site/distribution-management.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Distribution Management 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Overview

62 |

The following is the distribution management information used by this project.

63 | 65 |
67 |
68 |
69 |
70 |
71 |
72 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /target/site/plugin-management.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Plugin Management 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Project Plugin Management

62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
GroupIdArtifactIdVersion
org.apache.maven.pluginsmaven-antrun-plugin1.3
org.apache.maven.pluginsmaven-assembly-plugin2.2-beta-5
org.apache.maven.pluginsmaven-dependency-plugin2.8
org.apache.maven.pluginsmaven-release-plugin2.5.3
83 |
84 |
85 |
86 |
87 |
88 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /target/site/css/maven-theme.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | body { 21 | padding: 0px 0px 10px 0px; 22 | } 23 | body, td, select, input, li{ 24 | font-family: Verdana, Helvetica, Arial, sans-serif; 25 | font-size: 13px; 26 | } 27 | code{ 28 | font-family: Courier, monospace; 29 | font-size: 13px; 30 | } 31 | a { 32 | text-decoration: none; 33 | } 34 | a:link { 35 | color:#36a; 36 | } 37 | a:visited { 38 | color:#47a; 39 | } 40 | a:active, a:hover { 41 | color:#69c; 42 | } 43 | #legend li.externalLink { 44 | background: url(../images/external.png) left top no-repeat; 45 | padding-left: 18px; 46 | } 47 | a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { 48 | background: url(../images/external.png) right center no-repeat; 49 | padding-right: 18px; 50 | } 51 | #legend li.newWindow { 52 | background: url(../images/newwindow.png) left top no-repeat; 53 | padding-left: 18px; 54 | } 55 | a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover { 56 | background: url(../images/newwindow.png) right center no-repeat; 57 | padding-right: 18px; 58 | } 59 | h2 { 60 | padding: 4px 4px 4px 6px; 61 | border: 1px solid #999; 62 | color: #900; 63 | background-color: #ddd; 64 | font-weight:900; 65 | font-size: x-large; 66 | } 67 | h3 { 68 | padding: 4px 4px 4px 6px; 69 | border: 1px solid #aaa; 70 | color: #900; 71 | background-color: #eee; 72 | font-weight: normal; 73 | font-size: large; 74 | } 75 | h4 { 76 | padding: 4px 4px 4px 6px; 77 | border: 1px solid #bbb; 78 | color: #900; 79 | background-color: #fff; 80 | font-weight: normal; 81 | font-size: large; 82 | } 83 | h5 { 84 | padding: 4px 4px 4px 6px; 85 | color: #900; 86 | font-size: medium; 87 | } 88 | p { 89 | line-height: 1.3em; 90 | font-size: small; 91 | } 92 | #breadcrumbs { 93 | border-top: 1px solid #aaa; 94 | border-bottom: 1px solid #aaa; 95 | background-color: #ccc; 96 | } 97 | #leftColumn { 98 | margin: 10px 0 0 5px; 99 | border: 1px solid #999; 100 | background-color: #eee; 101 | padding-bottom: 3px; /* IE-9 scrollbar-fix */ 102 | } 103 | #navcolumn h5 { 104 | font-size: smaller; 105 | border-bottom: 1px solid #aaaaaa; 106 | padding-top: 2px; 107 | color: #000; 108 | } 109 | 110 | table.bodyTable th { 111 | color: white; 112 | background-color: #bbb; 113 | text-align: left; 114 | font-weight: bold; 115 | } 116 | 117 | table.bodyTable th, table.bodyTable td { 118 | font-size: 1em; 119 | } 120 | 121 | table.bodyTable tr.a { 122 | background-color: #ddd; 123 | } 124 | 125 | table.bodyTable tr.b { 126 | background-color: #eee; 127 | } 128 | 129 | .source { 130 | border: 1px solid #999; 131 | } 132 | dl { 133 | padding: 4px 4px 4px 6px; 134 | border: 1px solid #aaa; 135 | background-color: #ffc; 136 | } 137 | dt { 138 | color: #900; 139 | } 140 | #organizationLogo img, #projectLogo img, #projectLogo span{ 141 | margin: 8px; 142 | } 143 | #banner { 144 | border-bottom: 1px solid #fff; 145 | } 146 | .errormark, .warningmark, .donemark, .infomark { 147 | background: url(../images/icon_error_sml.gif) no-repeat; 148 | } 149 | 150 | .warningmark { 151 | background-image: url(../images/icon_warning_sml.gif); 152 | } 153 | 154 | .donemark { 155 | background-image: url(../images/icon_success_sml.gif); 156 | } 157 | 158 | .infomark { 159 | background-image: url(../images/icon_info_sml.gif); 160 | } 161 | 162 | -------------------------------------------------------------------------------- /target/site/summary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Summary 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Project Summary

62 |
63 |

Project Information

64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 |
FieldValue
NameParalleldots AI APIs
DescriptionA Java Wrapper for using Paralleldots AI APIs.
Homepagehttps://www.paralleldots.com
77 |
78 |

Project Organization

79 |

This project does not belong to an organization.

80 |
81 |

Build Information

82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 |
FieldValue
GroupIdcom.paralleldots
ArtifactIdparalleldots
Version1.0.3
Typejar
Java Version1.8
101 |
102 |
103 |
104 |
105 |
106 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /target/site/team.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Team 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Project Team

62 |

A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.

63 |

The project team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.

64 |
65 |

Members

66 |

The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.

67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
ImageNameEmailOrganizationOrganization URL
Vaibhav Vishwakarmavaibhiiitm@gmail.comParalleldotshttps://www.paralleldots.com
80 |
81 |

Contributors

82 |

There are no contributors listed for this project. Please check back again later.

83 |
84 |
85 |
86 |
87 |
88 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /target/apidocs/jquery/jszip-utils/dist/jszip-utils.js: -------------------------------------------------------------------------------- 1 | /*! 2 | 3 | JSZipUtils - A collection of cross-browser utilities to go along with JSZip. 4 | 5 | 6 | (c) 2014 Stuart Knightley, David Duponchel 7 | Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. 8 | 9 | */ 10 | !function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Source Code Management 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Overview

62 |

This project uses Git to manage its source code. Instructions on Git use can be found at https://git-scm.com/documentation.

63 |
64 |

Web Browser Access

65 |

The following is a link to a browsable version of the source repository:

66 |
68 |
69 |

Anonymous Access

70 |

The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

71 |
72 |
$ git clone git://github.com/ParallelDots/ParallelDots-Java-API.git
73 |
74 |

Developer Access

75 |

Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

76 |
77 |
$ git clone ssh://github.com:ParallelDots/ParallelDots-Java-API.git
78 |
79 |

Access from Behind a Firewall

80 |

Refer to the documentation of the SCM used for more information about access behind a firewall.

81 |
82 |
83 |
84 |
85 |
86 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /target/apidocs/deprecated-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Deprecated List (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Deprecated API

97 |

Contents

98 |
99 |
100 |
101 | 144 |

Copyright © 2021. All rights reserved.

145 |
146 | 147 | 148 | -------------------------------------------------------------------------------- /target/javadoc-bundle-options/package-list: -------------------------------------------------------------------------------- 1 | java.applet 2 | java.awt 3 | java.awt.color 4 | java.awt.datatransfer 5 | java.awt.dnd 6 | java.awt.event 7 | java.awt.font 8 | java.awt.geom 9 | java.awt.im 10 | java.awt.im.spi 11 | java.awt.image 12 | java.awt.image.renderable 13 | java.awt.print 14 | java.beans 15 | java.beans.beancontext 16 | java.io 17 | java.lang 18 | java.lang.annotation 19 | java.lang.instrument 20 | java.lang.invoke 21 | java.lang.management 22 | java.lang.ref 23 | java.lang.reflect 24 | java.math 25 | java.net 26 | java.nio 27 | java.nio.channels 28 | java.nio.channels.spi 29 | java.nio.charset 30 | java.nio.charset.spi 31 | java.nio.file 32 | java.nio.file.attribute 33 | java.nio.file.spi 34 | java.rmi 35 | java.rmi.activation 36 | java.rmi.dgc 37 | java.rmi.registry 38 | java.rmi.server 39 | java.security 40 | java.security.acl 41 | java.security.cert 42 | java.security.interfaces 43 | java.security.spec 44 | java.sql 45 | java.text 46 | java.text.spi 47 | java.util 48 | java.util.concurrent 49 | java.util.concurrent.atomic 50 | java.util.concurrent.locks 51 | java.util.jar 52 | java.util.logging 53 | java.util.prefs 54 | java.util.regex 55 | java.util.spi 56 | java.util.zip 57 | javax.accessibility 58 | javax.activation 59 | javax.activity 60 | javax.annotation 61 | javax.annotation.processing 62 | javax.crypto 63 | javax.crypto.interfaces 64 | javax.crypto.spec 65 | javax.imageio 66 | javax.imageio.event 67 | javax.imageio.metadata 68 | javax.imageio.plugins.bmp 69 | javax.imageio.plugins.jpeg 70 | javax.imageio.spi 71 | javax.imageio.stream 72 | javax.jws 73 | javax.jws.soap 74 | javax.lang.model 75 | javax.lang.model.element 76 | javax.lang.model.type 77 | javax.lang.model.util 78 | javax.management 79 | javax.management.loading 80 | javax.management.modelmbean 81 | javax.management.monitor 82 | javax.management.openmbean 83 | javax.management.relation 84 | javax.management.remote 85 | javax.management.remote.rmi 86 | javax.management.timer 87 | javax.naming 88 | javax.naming.directory 89 | javax.naming.event 90 | javax.naming.ldap 91 | javax.naming.spi 92 | javax.net 93 | javax.net.ssl 94 | javax.print 95 | javax.print.attribute 96 | javax.print.attribute.standard 97 | javax.print.event 98 | javax.rmi 99 | javax.rmi.CORBA 100 | javax.rmi.ssl 101 | javax.script 102 | javax.security.auth 103 | javax.security.auth.callback 104 | javax.security.auth.kerberos 105 | javax.security.auth.login 106 | javax.security.auth.spi 107 | javax.security.auth.x500 108 | javax.security.cert 109 | javax.security.sasl 110 | javax.sound.midi 111 | javax.sound.midi.spi 112 | javax.sound.sampled 113 | javax.sound.sampled.spi 114 | javax.sql 115 | javax.sql.rowset 116 | javax.sql.rowset.serial 117 | javax.sql.rowset.spi 118 | javax.swing 119 | javax.swing.border 120 | javax.swing.colorchooser 121 | javax.swing.event 122 | javax.swing.filechooser 123 | javax.swing.plaf 124 | javax.swing.plaf.basic 125 | javax.swing.plaf.metal 126 | javax.swing.plaf.multi 127 | javax.swing.plaf.nimbus 128 | javax.swing.plaf.synth 129 | javax.swing.table 130 | javax.swing.text 131 | javax.swing.text.html 132 | javax.swing.text.html.parser 133 | javax.swing.text.rtf 134 | javax.swing.tree 135 | javax.swing.undo 136 | javax.tools 137 | javax.transaction 138 | javax.transaction.xa 139 | javax.xml 140 | javax.xml.bind 141 | javax.xml.bind.annotation 142 | javax.xml.bind.annotation.adapters 143 | javax.xml.bind.attachment 144 | javax.xml.bind.helpers 145 | javax.xml.bind.util 146 | javax.xml.crypto 147 | javax.xml.crypto.dom 148 | javax.xml.crypto.dsig 149 | javax.xml.crypto.dsig.dom 150 | javax.xml.crypto.dsig.keyinfo 151 | javax.xml.crypto.dsig.spec 152 | javax.xml.datatype 153 | javax.xml.namespace 154 | javax.xml.parsers 155 | javax.xml.soap 156 | javax.xml.stream 157 | javax.xml.stream.events 158 | javax.xml.stream.util 159 | javax.xml.transform 160 | javax.xml.transform.dom 161 | javax.xml.transform.sax 162 | javax.xml.transform.stax 163 | javax.xml.transform.stream 164 | javax.xml.validation 165 | javax.xml.ws 166 | javax.xml.ws.handler 167 | javax.xml.ws.handler.soap 168 | javax.xml.ws.http 169 | javax.xml.ws.soap 170 | javax.xml.ws.spi 171 | javax.xml.ws.spi.http 172 | javax.xml.ws.wsaddressing 173 | javax.xml.xpath 174 | org.ietf.jgss 175 | org.omg.CORBA 176 | org.omg.CORBA.DynAnyPackage 177 | org.omg.CORBA.ORBPackage 178 | org.omg.CORBA.TypeCodePackage 179 | org.omg.CORBA.portable 180 | org.omg.CORBA_2_3 181 | org.omg.CORBA_2_3.portable 182 | org.omg.CosNaming 183 | org.omg.CosNaming.NamingContextExtPackage 184 | org.omg.CosNaming.NamingContextPackage 185 | org.omg.Dynamic 186 | org.omg.DynamicAny 187 | org.omg.DynamicAny.DynAnyFactoryPackage 188 | org.omg.DynamicAny.DynAnyPackage 189 | org.omg.IOP 190 | org.omg.IOP.CodecFactoryPackage 191 | org.omg.IOP.CodecPackage 192 | org.omg.Messaging 193 | org.omg.PortableInterceptor 194 | org.omg.PortableInterceptor.ORBInitInfoPackage 195 | org.omg.PortableServer 196 | org.omg.PortableServer.CurrentPackage 197 | org.omg.PortableServer.POAManagerPackage 198 | org.omg.PortableServer.POAPackage 199 | org.omg.PortableServer.ServantLocatorPackage 200 | org.omg.PortableServer.portable 201 | org.omg.SendingContext 202 | org.omg.stub.java.rmi 203 | org.w3c.dom 204 | org.w3c.dom.bootstrap 205 | org.w3c.dom.events 206 | org.w3c.dom.ls 207 | org.xml.sax 208 | org.xml.sax.ext 209 | org.xml.sax.helpers -------------------------------------------------------------------------------- /target/site/dependency-info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Dependency Information 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Dependency Information

62 |
63 |

Apache Maven

64 |
65 |
<dependency>
 66 |   <groupId>com.paralleldots</groupId>
 67 |   <artifactId>paralleldots</artifactId>
 68 |   <version>1.0.3</version>
 69 | </dependency>
70 |
71 |

Apache Buildr

72 |
73 |
'com.paralleldots:paralleldots:jar:1.0.3'
74 |
75 |

Apache Ivy

76 |
77 |
<dependency org="com.paralleldots" name="paralleldots" rev="1.0.3">
 78 |   <artifact name="paralleldots" type="jar" />
 79 | </dependency>
80 |
81 |

Groovy Grape

82 |
83 |
@Grapes(
 84 | @Grab(group='com.paralleldots', module='paralleldots', version='1.0.3')
 85 | )
86 |
87 |

Gradle/Grails

88 |
89 |
compile 'com.paralleldots:paralleldots:1.0.3'
90 |
91 |

Scala SBT

92 |
93 |
libraryDependencies += "com.paralleldots" % "paralleldots" % "1.0.3"
94 |
95 |

Leiningen

96 |
97 |
[com.paralleldots/paralleldots "1.0.3"]
98 |
99 |
100 |
101 |
102 |
103 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /target/apidocs/constant-values.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Constant Field Values (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Constant Field Values

97 |
98 |

Contents

99 |
100 |
101 |
102 |
103 | 146 |

Copyright © 2021. All rights reserved.

147 |
148 | 149 | 150 | -------------------------------------------------------------------------------- /target/apidocs/com/paralleldots/paralleldots/package-use.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Uses of Package com.paralleldots.paralleldots (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Uses of Package
com.paralleldots.paralleldots

97 |
98 |
No usage of com.paralleldots.paralleldots
99 |
100 |
101 | 144 |

Copyright © 2021. All rights reserved.

145 |
146 | 147 | 148 | -------------------------------------------------------------------------------- /target/site/project-info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Information 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Project Information

62 |

This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by Maven on behalf of the project.

63 |
64 |

Overview

65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 |
DocumentDescription
DependenciesThis document lists the project's dependencies and provides information on each dependency.
Dependency InformationThis document describes how to to include this project as a dependency using various dependency management tools.
Distribution ManagementThis document provides informations on the distribution management of this project.
AboutA Java Wrapper for using Paralleldots AI APIs.
LicensesThis document lists the project license(s).
Plugin ManagementThis document lists the plugins that are defined through pluginManagement.
PluginsThis document lists the build plugins and the report plugins used by this project.
Source Code ManagementThis document lists ways to access the online source repository.
SummaryThis document lists other related information of this project
TeamThis document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another.
99 |
100 |
101 |
102 |
103 |
104 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /target/apidocs/com/paralleldots/paralleldots/class-use/App.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Uses of Class com.paralleldots.paralleldots.App (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Uses of Class
com.paralleldots.paralleldots.App

97 |
98 |
No usage of com.paralleldots.paralleldots.App
99 |
100 |
101 | 144 |

Copyright © 2021. All rights reserved.

145 |
146 | 147 | 148 | -------------------------------------------------------------------------------- /target/apidocs/allclasses-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Classes (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

All Classes

97 |
98 |
99 |
    100 |
  • 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 |
    Class Summary 
    ClassDescription
    App 
    112 |
  • 113 |
114 |
115 |
116 |
117 | 160 |

Copyright © 2021. All rights reserved.

161 |
162 | 163 | 164 | -------------------------------------------------------------------------------- /target/apidocs/overview-tree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Class Hierarchy (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Hierarchy For All Packages

97 | Package Hierarchies: 98 | 101 |
102 |
103 |
104 |

Class Hierarchy

105 |
    106 |
  • java.lang.Object 107 |
      108 |
    • com.paralleldots.paralleldots.App
    • 109 |
    110 |
  • 111 |
112 |
113 |
114 |
115 |
116 | 159 |

Copyright © 2021. All rights reserved.

160 |
161 | 162 | 163 | -------------------------------------------------------------------------------- /target/apidocs/allpackages-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | All Packages (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

All Packages

97 |
98 |
99 |
    100 |
  • 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 |
    Package Summary 
    PackageDescription
    com.paralleldots.paralleldots 
    114 |
  • 115 |
116 |
117 |
118 |
119 | 162 |

Copyright © 2021. All rights reserved.

163 |
164 | 165 | 166 | -------------------------------------------------------------------------------- /target/apidocs/member-search-index.js: -------------------------------------------------------------------------------- 1 | memberSearchIndex = [{"p":"com.paralleldots.paralleldots","c":"App","l":"abuse_batch(JSONArray)","url":"abuse_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"abuse(String)","url":"abuse(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"App(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"custom_classifier(String, JSONArray)","url":"custom_classifier(java.lang.String,org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"emotion_batch(JSONArray, String)","url":"emotion_batch(org.json.simple.JSONArray,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"emotion_batch(JSONArray)","url":"emotion_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"emotion(String, String)","url":"emotion(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"emotion(String)","url":"emotion(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"facial_emotion_url(String)","url":"facial_emotion_url(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"facial_emotion(String)","url":"facial_emotion(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"intent_batch(JSONArray)","url":"intent_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"intent(String)","url":"intent(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"keywords_batch(JSONArray)","url":"keywords_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"keywords(String)","url":"keywords(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"language_detection_batch(JSONArray)","url":"language_detection_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"language_detection(String)","url":"language_detection(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"main(String[])","url":"main(java.lang.String[])"},{"p":"com.paralleldots.paralleldots","c":"App","l":"multilang_keywords(String, String)","url":"multilang_keywords(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"ner_batch(JSONArray, String)","url":"ner_batch(org.json.simple.JSONArray,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"ner_batch(JSONArray)","url":"ner_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"ner(String, String)","url":"ner(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"ner(String)","url":"ner(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"nsfw_url(String)","url":"nsfw_url(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"nsfw(String)","url":"nsfw(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"object_recognizer_url(String)","url":"object_recognizer_url(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"object_recognizer(String)","url":"object_recognizer(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"phrase_extractor_batch(JSONArray)","url":"phrase_extractor_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"phrase_extractor(String)","url":"phrase_extractor(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"popularity_url(String)","url":"popularity_url(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"popularity(String)","url":"popularity(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sarcasm_batch(JSONArray, String)","url":"sarcasm_batch(org.json.simple.JSONArray,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sarcasm_batch(JSONArray)","url":"sarcasm_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sarcasm(String, String)","url":"sarcasm(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sarcasm(String)","url":"sarcasm(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sentiment_batch(JSONArray, String)","url":"sentiment_batch(org.json.simple.JSONArray,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sentiment_batch(JSONArray)","url":"sentiment_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sentiment(String, String)","url":"sentiment(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"sentiment(String)","url":"sentiment(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"setUpCert(String)","url":"setUpCert(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"similarity(String, String)","url":"similarity(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"target_sentiment_batch(JSONArray, String, String)","url":"target_sentiment_batch(org.json.simple.JSONArray,java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"target_sentiment_batch(JSONArray, String)","url":"target_sentiment_batch(org.json.simple.JSONArray,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"target_sentiment(String, String, String)","url":"target_sentiment(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"target_sentiment(String, String)","url":"target_sentiment(java.lang.String,java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"taxonomy_batch(JSONArray)","url":"taxonomy_batch(org.json.simple.JSONArray)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"taxonomy(String)","url":"taxonomy(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"text_parser(String)","url":"text_parser(java.lang.String)"},{"p":"com.paralleldots.paralleldots","c":"App","l":"usage()"}] -------------------------------------------------------------------------------- /target/apidocs/com/paralleldots/paralleldots/package-tree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | com.paralleldots.paralleldots Class Hierarchy (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Hierarchy For Package com.paralleldots.paralleldots

97 |
98 |
99 |
100 |

Class Hierarchy

101 |
    102 |
  • java.lang.Object 103 |
      104 |
    • com.paralleldots.paralleldots.App
    • 105 |
    106 |
  • 107 |
108 |
109 |
110 |
111 |
112 | 155 |

Copyright © 2021. All rights reserved.

156 |
157 | 158 | 159 | -------------------------------------------------------------------------------- /target/apidocs/com/paralleldots/paralleldots/package-summary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | com.paralleldots.paralleldots (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

Package com.paralleldots.paralleldots

97 |
98 |
99 |
    100 |
  • 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 |
    Class Summary 
    ClassDescription
    App 
    114 |
  • 115 |
116 |
117 |
118 |
119 | 162 |

Copyright © 2021. All rights reserved.

163 |
164 | 165 | 166 | -------------------------------------------------------------------------------- /pom.xml.versionsBackup: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | com.paralleldots 5 | paralleldots 6 | 1.0-SNAPSHOT 7 | 8 | 9 | 10 | org.sonatype.plugins 11 | nexus-staging-maven-plugin 12 | 1.6.7 13 | true 14 | 15 | ossrh 16 | https://oss.sonatype.org/ 17 | true 18 | 19 | 20 | 21 | org.apache.maven.plugins 22 | maven-source-plugin 23 | 2.2.1 24 | 25 | 26 | attach-sources 27 | 28 | jar-no-fork 29 | 30 | 31 | 32 | 33 | 34 | org.apache.maven.plugins 35 | maven-javadoc-plugin 36 | 2.9.1 37 | 38 | 39 | attach-javadocs 40 | 41 | jar 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-gpg-plugin 49 | 1.5 50 | 51 | 52 | sign-artifacts 53 | verify 54 | 55 | sign 56 | 57 | 58 | 59 | 60 | 61 | org.sonatype.plugins 62 | nexus-staging-maven-plugin 63 | 1.6.7 64 | true 65 | 66 | ossrh 67 | https://oss.sonatype.org/ 68 | true 69 | 70 | 71 | 72 | 73 | jar 74 | Paralleldots AI APIs 75 | A Java Wrapper for using Paralleldots AI APIs. 76 | https://www.paralleldots.com 77 | 78 | 79 | MIT License 80 | http://www.opensource.org/licenses/mit-license.php 81 | 82 | 83 | 84 | 85 | ossrh 86 | https://oss.sonatype.org/content/repositories/snapshots 87 | 88 | 89 | ossrh 90 | https://oss.sonatype.org/service/local/staging/deploy/maven2/ 91 | 92 | 93 | 94 | scm:git:git://github.com/ParallelDots/ParallelDots-Java-API.git 95 | scm:git:ssh://github.com:ParallelDots/ParallelDots-Java-API.git 96 | https://github.com/ParallelDots/ParallelDots-Java-API 97 | 98 | 99 | 100 | Vaibhav Vishwakarma 101 | vaibhiiitm@gmail.com 102 | Paralleldots 103 | https://www.paralleldots.com 104 | 105 | 106 | 107 | 108 | junit 109 | junit 110 | 4.12 111 | test 112 | 113 | 114 | org.hamcrest 115 | hamcrest-core 116 | 1.3 117 | test 118 | 119 | 120 | 121 | com.googlecode.json-simple 122 | json-simple 123 | 1.1 124 | 125 | 126 | 127 | com.squareup.okhttp3 128 | okhttp 129 | 3.10.0 130 | 131 | 132 | 133 | UTF-8 134 | 1.8 135 | 1.8 136 | 137 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | com.paralleldots 5 | paralleldots 6 | 1.0.3 7 | 8 | 9 | 10 | org.sonatype.plugins 11 | nexus-staging-maven-plugin 12 | 1.6.7 13 | true 14 | 15 | ossrh 16 | https://oss.sonatype.org/ 17 | true 18 | 19 | 20 | 21 | org.apache.maven.plugins 22 | maven-source-plugin 23 | 2.2.1 24 | 25 | 26 | attach-sources 27 | 28 | jar-no-fork 29 | 30 | 31 | 32 | 33 | 34 | org.apache.maven.plugins 35 | maven-javadoc-plugin 36 | 2.9.1 37 | 38 | 39 | attach-javadocs 40 | 41 | jar 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-site-plugin 49 | 3.7.1 50 | 51 | 52 | org.apache.maven.plugins 53 | maven-project-info-reports-plugin 54 | 3.0.0 55 | 56 | 57 | org.apache.maven.plugins 58 | maven-gpg-plugin 59 | 1.5 60 | 61 | 62 | sign-artifacts 63 | verify 64 | 65 | sign 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | jar 74 | Paralleldots AI APIs 75 | A Java Wrapper for using Paralleldots AI APIs. 76 | https://www.paralleldots.com 77 | 78 | 79 | MIT License 80 | http://www.opensource.org/licenses/mit-license.php 81 | 82 | 83 | 84 | 85 | ossrh 86 | https://oss.sonatype.org/content/repositories/snapshots 87 | 88 | 89 | ossrh 90 | https://oss.sonatype.org/service/local/staging/deploy/maven2/ 91 | 92 | 93 | 94 | scm:git:git://github.com/ParallelDots/ParallelDots-Java-API.git 95 | scm:git:ssh://github.com:ParallelDots/ParallelDots-Java-API.git 96 | https://github.com/ParallelDots/ParallelDots-Java-API 97 | 98 | 99 | 100 | Vaibhav Vishwakarma 101 | vaibhiiitm@gmail.com 102 | Paralleldots 103 | https://www.paralleldots.com 104 | 105 | 106 | 107 | 108 | junit 109 | junit 110 | 4.12 111 | test 112 | 113 | 114 | org.hamcrest 115 | hamcrest-core 116 | 1.3 117 | test 118 | 119 | 120 | 121 | com.googlecode.json-simple 122 | json-simple 123 | 1.1 124 | 125 | 126 | com.sun.activation 127 | javax.activation 128 | 1.2.0 129 | 130 | 131 | 132 | com.squareup.okhttp3 133 | okhttp 134 | 3.10.0 135 | 136 | 137 | 138 | UTF-8 139 | 1.8 140 | 1.8 141 | 142 | -------------------------------------------------------------------------------- /target/paralleldots-1.0.3.pom: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | com.paralleldots 5 | paralleldots 6 | 1.0.3 7 | 8 | 9 | 10 | org.sonatype.plugins 11 | nexus-staging-maven-plugin 12 | 1.6.7 13 | true 14 | 15 | ossrh 16 | https://oss.sonatype.org/ 17 | true 18 | 19 | 20 | 21 | org.apache.maven.plugins 22 | maven-source-plugin 23 | 2.2.1 24 | 25 | 26 | attach-sources 27 | 28 | jar-no-fork 29 | 30 | 31 | 32 | 33 | 34 | org.apache.maven.plugins 35 | maven-javadoc-plugin 36 | 2.9.1 37 | 38 | 39 | attach-javadocs 40 | 41 | jar 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-site-plugin 49 | 3.7.1 50 | 51 | 52 | org.apache.maven.plugins 53 | maven-project-info-reports-plugin 54 | 3.0.0 55 | 56 | 57 | org.apache.maven.plugins 58 | maven-gpg-plugin 59 | 1.5 60 | 61 | 62 | sign-artifacts 63 | verify 64 | 65 | sign 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | jar 74 | Paralleldots AI APIs 75 | A Java Wrapper for using Paralleldots AI APIs. 76 | https://www.paralleldots.com 77 | 78 | 79 | MIT License 80 | http://www.opensource.org/licenses/mit-license.php 81 | 82 | 83 | 84 | 85 | ossrh 86 | https://oss.sonatype.org/content/repositories/snapshots 87 | 88 | 89 | ossrh 90 | https://oss.sonatype.org/service/local/staging/deploy/maven2/ 91 | 92 | 93 | 94 | scm:git:git://github.com/ParallelDots/ParallelDots-Java-API.git 95 | scm:git:ssh://github.com:ParallelDots/ParallelDots-Java-API.git 96 | https://github.com/ParallelDots/ParallelDots-Java-API 97 | 98 | 99 | 100 | Vaibhav Vishwakarma 101 | vaibhiiitm@gmail.com 102 | Paralleldots 103 | https://www.paralleldots.com 104 | 105 | 106 | 107 | 108 | junit 109 | junit 110 | 4.12 111 | test 112 | 113 | 114 | org.hamcrest 115 | hamcrest-core 116 | 1.3 117 | test 118 | 119 | 120 | 121 | com.googlecode.json-simple 122 | json-simple 123 | 1.1 124 | 125 | 126 | com.sun.activation 127 | javax.activation 128 | 1.2.0 129 | 130 | 131 | 132 | com.squareup.okhttp3 133 | okhttp 134 | 3.10.0 135 | 136 | 137 | 138 | UTF-8 139 | 1.8 140 | 1.8 141 | 142 | -------------------------------------------------------------------------------- /target/nexus-staging/staging/573cfbe0792e84/com/paralleldots/paralleldots/1.0.3/paralleldots-1.0.3.pom: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | com.paralleldots 5 | paralleldots 6 | 1.0.3 7 | 8 | 9 | 10 | org.sonatype.plugins 11 | nexus-staging-maven-plugin 12 | 1.6.7 13 | true 14 | 15 | ossrh 16 | https://oss.sonatype.org/ 17 | true 18 | 19 | 20 | 21 | org.apache.maven.plugins 22 | maven-source-plugin 23 | 2.2.1 24 | 25 | 26 | attach-sources 27 | 28 | jar-no-fork 29 | 30 | 31 | 32 | 33 | 34 | org.apache.maven.plugins 35 | maven-javadoc-plugin 36 | 2.9.1 37 | 38 | 39 | attach-javadocs 40 | 41 | jar 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-site-plugin 49 | 3.7.1 50 | 51 | 52 | org.apache.maven.plugins 53 | maven-project-info-reports-plugin 54 | 3.0.0 55 | 56 | 57 | org.apache.maven.plugins 58 | maven-gpg-plugin 59 | 1.5 60 | 61 | 62 | sign-artifacts 63 | verify 64 | 65 | sign 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | jar 74 | Paralleldots AI APIs 75 | A Java Wrapper for using Paralleldots AI APIs. 76 | https://www.paralleldots.com 77 | 78 | 79 | MIT License 80 | http://www.opensource.org/licenses/mit-license.php 81 | 82 | 83 | 84 | 85 | ossrh 86 | https://oss.sonatype.org/content/repositories/snapshots 87 | 88 | 89 | ossrh 90 | https://oss.sonatype.org/service/local/staging/deploy/maven2/ 91 | 92 | 93 | 94 | scm:git:git://github.com/ParallelDots/ParallelDots-Java-API.git 95 | scm:git:ssh://github.com:ParallelDots/ParallelDots-Java-API.git 96 | https://github.com/ParallelDots/ParallelDots-Java-API 97 | 98 | 99 | 100 | Vaibhav Vishwakarma 101 | vaibhiiitm@gmail.com 102 | Paralleldots 103 | https://www.paralleldots.com 104 | 105 | 106 | 107 | 108 | junit 109 | junit 110 | 4.12 111 | test 112 | 113 | 114 | org.hamcrest 115 | hamcrest-core 116 | 1.3 117 | test 118 | 119 | 120 | 121 | com.googlecode.json-simple 122 | json-simple 123 | 1.1 124 | 125 | 126 | com.sun.activation 127 | javax.activation 128 | 1.2.0 129 | 130 | 131 | 132 | com.squareup.okhttp3 133 | okhttp 134 | 3.10.0 135 | 136 | 137 | 138 | UTF-8 139 | 1.8 140 | 1.8 141 | 142 | -------------------------------------------------------------------------------- /target/apidocs/script.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 | * 5 | * This code is free software; you can redistribute it and/or modify it 6 | * under the terms of the GNU General Public License version 2 only, as 7 | * published by the Free Software Foundation. Oracle designates this 8 | * particular file as subject to the "Classpath" exception as provided 9 | * by Oracle in the LICENSE file that accompanied this code. 10 | * 11 | * This code is distributed in the hope that it will be useful, but WITHOUT 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 | * version 2 for more details (a copy is included in the LICENSE file that 15 | * accompanied this code). 16 | * 17 | * You should have received a copy of the GNU General Public License version 18 | * 2 along with this work; if not, write to the Free Software Foundation, 19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 | * 21 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 | * or visit www.oracle.com if you need additional information or have any 23 | * questions. 24 | */ 25 | 26 | var moduleSearchIndex; 27 | var packageSearchIndex; 28 | var typeSearchIndex; 29 | var memberSearchIndex; 30 | var tagSearchIndex; 31 | function loadScripts(doc, tag) { 32 | createElem(doc, tag, 'jquery/jszip/dist/jszip.js'); 33 | createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils.js'); 34 | if (window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0 || 35 | window.navigator.userAgent.indexOf('Edge/') > 0) { 36 | createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils-ie.js'); 37 | } 38 | createElem(doc, tag, 'search.js'); 39 | 40 | $.get(pathtoroot + "module-search-index.zip") 41 | .done(function() { 42 | JSZipUtils.getBinaryContent(pathtoroot + "module-search-index.zip", function(e, data) { 43 | JSZip.loadAsync(data).then(function(zip){ 44 | zip.file("module-search-index.json").async("text").then(function(content){ 45 | moduleSearchIndex = JSON.parse(content); 46 | }); 47 | }); 48 | }); 49 | }); 50 | $.get(pathtoroot + "package-search-index.zip") 51 | .done(function() { 52 | JSZipUtils.getBinaryContent(pathtoroot + "package-search-index.zip", function(e, data) { 53 | JSZip.loadAsync(data).then(function(zip){ 54 | zip.file("package-search-index.json").async("text").then(function(content){ 55 | packageSearchIndex = JSON.parse(content); 56 | }); 57 | }); 58 | }); 59 | }); 60 | $.get(pathtoroot + "type-search-index.zip") 61 | .done(function() { 62 | JSZipUtils.getBinaryContent(pathtoroot + "type-search-index.zip", function(e, data) { 63 | JSZip.loadAsync(data).then(function(zip){ 64 | zip.file("type-search-index.json").async("text").then(function(content){ 65 | typeSearchIndex = JSON.parse(content); 66 | }); 67 | }); 68 | }); 69 | }); 70 | $.get(pathtoroot + "member-search-index.zip") 71 | .done(function() { 72 | JSZipUtils.getBinaryContent(pathtoroot + "member-search-index.zip", function(e, data) { 73 | JSZip.loadAsync(data).then(function(zip){ 74 | zip.file("member-search-index.json").async("text").then(function(content){ 75 | memberSearchIndex = JSON.parse(content); 76 | }); 77 | }); 78 | }); 79 | }); 80 | $.get(pathtoroot + "tag-search-index.zip") 81 | .done(function() { 82 | JSZipUtils.getBinaryContent(pathtoroot + "tag-search-index.zip", function(e, data) { 83 | JSZip.loadAsync(data).then(function(zip){ 84 | zip.file("tag-search-index.json").async("text").then(function(content){ 85 | tagSearchIndex = JSON.parse(content); 86 | }); 87 | }); 88 | }); 89 | }); 90 | if (!moduleSearchIndex) { 91 | createElem(doc, tag, 'module-search-index.js'); 92 | } 93 | if (!packageSearchIndex) { 94 | createElem(doc, tag, 'package-search-index.js'); 95 | } 96 | if (!typeSearchIndex) { 97 | createElem(doc, tag, 'type-search-index.js'); 98 | } 99 | if (!memberSearchIndex) { 100 | createElem(doc, tag, 'member-search-index.js'); 101 | } 102 | if (!tagSearchIndex) { 103 | createElem(doc, tag, 'tag-search-index.js'); 104 | } 105 | $(window).resize(function() { 106 | $('.navPadding').css('padding-top', $('.fixedNav').css("height")); 107 | }); 108 | } 109 | 110 | function createElem(doc, tag, path) { 111 | var script = doc.createElement(tag); 112 | var scriptElement = doc.getElementsByTagName(tag)[0]; 113 | script.src = pathtoroot + path; 114 | scriptElement.parentNode.insertBefore(script, scriptElement); 115 | } 116 | 117 | function show(type) { 118 | count = 0; 119 | for (var key in data) { 120 | var row = document.getElementById(key); 121 | if ((data[key] & type) !== 0) { 122 | row.style.display = ''; 123 | row.className = (count++ % 2) ? rowColor : altColor; 124 | } 125 | else 126 | row.style.display = 'none'; 127 | } 128 | updateTabs(type); 129 | } 130 | 131 | function updateTabs(type) { 132 | for (var value in tabs) { 133 | var sNode = document.getElementById(tabs[value][0]); 134 | var spanNode = sNode.firstChild; 135 | if (value == type) { 136 | sNode.className = activeTableTab; 137 | spanNode.innerHTML = tabs[value][1]; 138 | } 139 | else { 140 | sNode.className = tableTab; 141 | spanNode.innerHTML = "" + tabs[value][1] + ""; 142 | } 143 | } 144 | } 145 | 146 | function updateModuleFrame(pFrame, cFrame) { 147 | top.packageFrame.location = pFrame; 148 | top.classFrame.location = cFrame; 149 | } 150 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ParallelDots-Java-API 2 | Java wrapper for ParallelDots APIs 3 | 4 | # Installation 5 | #### Use the JAR 6 | * paralleldots-1.0.2.jar 7 | 8 | #### Path to JAR 9 | > path: target/paralleldots-1.0.2.jar 10 | 11 | #### Dependencies 12 | * okhttp-3.10.0.jar 13 | * okio-1.14.0.jar 14 | * json-simple-1.1.jar 15 | 16 | #### Languages Supported 17 | - Portuguese ( pt ) 18 | - Simplified Chinese ( zh ) 19 | - Spanish ( es ) 20 | - German ( de ) 21 | - French ( fr ) 22 | - Dutch ( nl ) 23 | - Italian (it) 24 | - Japanese ( ja ) 25 | - Russian ( ru ) 26 | - Thai ( th ) 27 | - Danish ( da ) 28 | - Finish ( fi ) 29 | - Arabic (ar) 30 | - Greek (el) 31 | 32 | #### Example 33 | ```sh 34 | import com.paralleldots.paralleldots.App; 35 | import org.json.simple.JSONObject; 36 | import org.json.simple.JSONArray; 37 | import org.json.simple.parser.JSONParser; 38 | 39 | JSONParser parser = new JSONParser(); 40 | JSONObject category = (JSONArray)parser.parse("[ \"world politics\", \"finance\" ]"); 41 | String path_to_image=""; 42 | String url_to_image=""; 43 | String lang_text = "C'est un environnement très hostile, si vous choisissez de débattre ici, vous serez vicieusement attaqué par l'opposition."; 44 | JSONArray text_list = (JSONArray)parser.parse("[ \"drugs are fun\", \"don\'t do drugs, stay in school\", \"lol you a fag son\", \"I have a throat infection\" ]"); 45 | JSONArray text_list_multilang = (JSONArray)parser.parse("[\"les drogues sont amusantes\", \"ne pas faire de la drogue reste à l'école\", \"lol vous un fils de fag\", \"J\'ai une infection de la gorge\"]"); 46 | 47 | App pd = new App(); 48 | System.out.println("Abuse"); 49 | String abuse = pd.abuse("you f**king a$$hole"); 50 | 51 | 52 | System.out.println("Abuse Batch"); 53 | String abuse_batch = pd.abuse_batch(text_list); 54 | 55 | 56 | System.out.println("Custom_Classifier"); 57 | String custom_classifier = pd.custom_classifier("Narendra Modi is the Prime Minister of India", category); 58 | 59 | 60 | System.out.println("Emotion"); 61 | String emotion = pd.emotion("Did you hear the latest Porcupine Tree song ? It's rocking !"); 62 | 63 | 64 | System.out.println("Emotion Multilang"); 65 | String emotion_multilang = pd.emotion("Avez-vous entendu la dernière chanson de Porcupine Tree? Ça berce!", "fr"); 66 | 67 | 68 | System.out.println("Emotion Batch"); 69 | String emotion_batch = pd.emotion_batch(text_list); 70 | 71 | 72 | System.out.println("Emotion Multilang Batch"); 73 | String emotion_multilang_batch = pd.emotion_batch(text_list_multilang, "fr"); 74 | 75 | 76 | System.out.println("Sarcasm"); 77 | String sarcasm = pd.sarcasm("Did you hear the latest Porcupine Tree song ? It's rocking !"); 78 | 79 | 80 | System.out.println("Sarcasm Multilang"); 81 | String sarcasm_multilang = pd.sarcasm("Avez-vous entendu la dernière chanson de Porcupine Tree? Ça berce!", "fr"); 82 | 83 | 84 | System.out.println("Sarcasm Batch"); 85 | String sarcasm_batch = pd.sarcasm_batch(text_list); 86 | 87 | 88 | System.out.println("Sarcasm Multilang Batch"); 89 | String sarcasm_multilang_batch = pd.sarcasm_batch(text_list_multilang, "fr"); 90 | 91 | 92 | System.out.println("Facial Emotion"); 93 | String facial_emotion = pd.facial_emotion(path_to_image); 94 | 95 | 96 | System.out.println("Facial Emotion URL"); 97 | String facial_emotion_url = pd.facial_emotion_url(url_to_image); 98 | 99 | 100 | System.out.println("Intent"); 101 | String intent = pd.intent("Finance ministry calls banks to discuss new facility to drain cash"); 102 | 103 | 104 | System.out.println("Intent Batch"); 105 | String intent_batch = pd.intent_batch(text_list); 106 | 107 | System.out.println("Keywords"); 108 | String keywords = pd.keywords("Prime Minister Narendra Modi tweeted a link to the speech Human Resource Development Minister Smriti Irani made in the Lok Sabha during the debate on the ongoing JNU row and the suicide of Dalit scholar Rohith Vemula at the Hyderabad Central University."); 109 | 110 | 111 | System.out.println("Keywords Batch"); 112 | String keywords_batch = pd.keywords_batch(text_list); 113 | 114 | 115 | System.out.println("Multilang_Keywords"); 116 | String multilang_keywords = pd.multilang_keywords("La ville de Paris est très belle", "fr"); 117 | 118 | 119 | System.out.println("NER"); 120 | String ner = pd.ner("Narendra Modi is the prime minister of India"); 121 | 122 | 123 | System.out.println("NER Batch"); 124 | String ner_batch = pd.ner_batch(text_list); 125 | 126 | System.out.println("Multilang NER"); 127 | String multilang_ner = pd.ner("Lionel Andrés Messi vuelve a ser el gran protagonista en las portadas de la prensa deportiva internacional al día siguiente de un partido de Champions.","es"); 128 | 129 | 130 | System.out.println("Multilang NER Batch"); 131 | String ner_multilang_batch = pd.ner_batch(text_list,"es"); 132 | 133 | 134 | System.out.println("Object Recognizer"); 135 | String object_recognizer = pd.object_recognizer(path_to_image); 136 | 137 | 138 | System.out.println("Object Recognizer URL"); 139 | String object_recognizer_url = pd.object_recognizer_url(url_to_image); 140 | 141 | 142 | System.out.println("Phrase Extractor"); 143 | String phrase_extractor = pd.phrase_extractor("The girls giggling and playing in the park never seemed to tire"); 144 | 145 | 146 | System.out.println("Phrase Extractor Batch"); 147 | String phrase_extractor_batch = pd.phrase_extractor_batch(text_list); 148 | 149 | 150 | System.out.println("Popularity"); 151 | String popularity = pd.popularity(path_to_image); 152 | 153 | 154 | System.out.println("Popularity_Url"); 155 | String popularity_url = pd.popularity_url(url_to_image); 156 | 157 | 158 | System.out.println("Sentiment"); 159 | String sentiment = pd.sentiment("Come on, lets play together"); 160 | 161 | 162 | System.out.println("Sentiment Multilang"); 163 | String sentiment_multilang = pd.sentiment("Allez, jouons ensemble", "fr"); 164 | 165 | 166 | System.out.println("Sentiment Batch"); 167 | String sentiment_batch = pd.sentiment_batch(text_list); 168 | 169 | 170 | System.out.println("Sentiment Multilang Batch"); 171 | String sentiment_multilang_batch = pd.sentiment_batch(text_list_multilang, "fr"); 172 | 173 | 174 | System.out.println("Similarity"); 175 | String similarity = pd.similarity("Sachin is the greatest batsman", "Tendulkar is the finest cricketer"); 176 | 177 | 178 | System.out.println("Taxonomy"); 179 | String taxonomy = pd.taxonomy("Narendra Modi is the prime minister of India"); 180 | 181 | 182 | System.out.println("Taxonomy Batch"); 183 | String taxonomy_batch = pd.taxonomy_batch(text_list); 184 | 185 | 186 | System.out.println("Text_Parser"); 187 | String text_parser = pd.text_parser("Thrilling contest between Manchester City and Manchester United ends in a draw."); 188 | 189 | 190 | System.out.println("Usage"); 191 | String usage = pd.usage(); 192 | 193 | 194 | ``` 195 | -------------------------------------------------------------------------------- /target/site/plugins.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Paralleldots AI APIs – Project Plugins 7 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 35 |
36 | 57 |
58 |
59 |
60 |
61 |

Project Build Plugins

62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 |
GroupIdArtifactIdVersion
org.apache.maven.pluginsmaven-clean-plugin2.5
org.apache.maven.pluginsmaven-compiler-plugin3.1
org.apache.maven.pluginsmaven-deploy-plugin2.7
org.apache.maven.pluginsmaven-gpg-plugin1.5
org.apache.maven.pluginsmaven-install-plugin2.4
org.apache.maven.pluginsmaven-jar-plugin2.4
org.apache.maven.pluginsmaven-javadoc-plugin2.9.1
org.apache.maven.pluginsmaven-project-info-reports-plugin3.0.0
org.apache.maven.pluginsmaven-resources-plugin2.6
org.apache.maven.pluginsmaven-site-plugin3.7.1
org.apache.maven.pluginsmaven-source-plugin2.2.1
org.apache.maven.pluginsmaven-surefire-plugin2.12.4
org.sonatype.pluginsnexus-staging-maven-plugin1.6.7
119 |
120 |

Project Report Plugins

121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 |
GroupIdArtifactIdVersion
org.apache.maven.pluginsmaven-project-info-reports-plugin3.0.0
130 |
131 |
132 |
133 |
134 |
135 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /target/apidocs/help-doc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | API Help (Paralleldots AI APIs 1.0.3 API) 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 33 | 36 |
37 | 93 |
94 |
95 |
96 |

How This API Document Is Organized

97 |
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
98 |
99 |
100 |
    101 |
  • 102 |
    103 |

    Package

    104 |

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:

    105 |
      106 |
    • Interfaces
    • 107 |
    • Classes
    • 108 |
    • Enums
    • 109 |
    • Exceptions
    • 110 |
    • Errors
    • 111 |
    • Annotation Types
    • 112 |
    113 |
    114 |
  • 115 |
  • 116 |
    117 |

    Class or Interface

    118 |

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    119 |
      120 |
    • Class Inheritance Diagram
    • 121 |
    • Direct Subclasses
    • 122 |
    • All Known Subinterfaces
    • 123 |
    • All Known Implementing Classes
    • 124 |
    • Class or Interface Declaration
    • 125 |
    • Class or Interface Description
    • 126 |
    127 |
    128 |
      129 |
    • Nested Class Summary
    • 130 |
    • Field Summary
    • 131 |
    • Property Summary
    • 132 |
    • Constructor Summary
    • 133 |
    • Method Summary
    • 134 |
    135 |
    136 |
      137 |
    • Field Detail
    • 138 |
    • Property Detail
    • 139 |
    • Constructor Detail
    • 140 |
    • Method Detail
    • 141 |
    142 |

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    143 |
    144 |
  • 145 |
  • 146 |
    147 |

    Annotation Type

    148 |

    Each annotation type has its own separate page with the following sections:

    149 |
      150 |
    • Annotation Type Declaration
    • 151 |
    • Annotation Type Description
    • 152 |
    • Required Element Summary
    • 153 |
    • Optional Element Summary
    • 154 |
    • Element Detail
    • 155 |
    156 |
    157 |
  • 158 |
  • 159 |
    160 |

    Enum

    161 |

    Each enum has its own separate page with the following sections:

    162 |
      163 |
    • Enum Declaration
    • 164 |
    • Enum Description
    • 165 |
    • Enum Constant Summary
    • 166 |
    • Enum Constant Detail
    • 167 |
    168 |
    169 |
  • 170 |
  • 171 |
    172 |

    Use

    173 |

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its "Use" page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    174 |
    175 |
  • 176 |
  • 177 |
    178 |

    Tree (Class Hierarchy)

    179 |

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

    180 |
      181 |
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • 182 |
    • When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.
    • 183 |
    184 |
    185 |
  • 186 |
  • 187 |
    188 |

    Deprecated API

    189 |

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    190 |
    191 |
  • 192 |
  • 193 |
    194 |

    Index

    195 |

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

    196 |
    197 |
  • 198 |
  • 199 |
    200 |

    All Classes

    201 |

    The All Classes link shows all classes and interfaces except non-static nested types.

    202 |
    203 |
  • 204 |
  • 205 |
    206 |

    Serialized Form

    207 |

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    208 |
    209 |
  • 210 |
  • 211 |
    212 |

    Constant Field Values

    213 |

    The Constant Field Values page lists the static final fields and their values.

    214 |
    215 |
  • 216 |
  • 217 |
    218 |

    Search

    219 |

    You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".

    220 |
    221 |
  • 222 |
223 |
224 | This help file applies to API documentation generated by the standard doclet.
225 |
226 |
227 | 270 |

Copyright © 2021. All rights reserved.

271 |
272 | 273 | 274 | -------------------------------------------------------------------------------- /target/apidocs/search.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 | * 5 | * This code is free software; you can redistribute it and/or modify it 6 | * under the terms of the GNU General Public License version 2 only, as 7 | * published by the Free Software Foundation. Oracle designates this 8 | * particular file as subject to the "Classpath" exception as provided 9 | * by Oracle in the LICENSE file that accompanied this code. 10 | * 11 | * This code is distributed in the hope that it will be useful, but WITHOUT 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 | * version 2 for more details (a copy is included in the LICENSE file that 15 | * accompanied this code). 16 | * 17 | * You should have received a copy of the GNU General Public License version 18 | * 2 along with this work; if not, write to the Free Software Foundation, 19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 | * 21 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 | * or visit www.oracle.com if you need additional information or have any 23 | * questions. 24 | */ 25 | 26 | var noResult = {l: "No results found"}; 27 | var catModules = "Modules"; 28 | var catPackages = "Packages"; 29 | var catTypes = "Types"; 30 | var catMembers = "Members"; 31 | var catSearchTags = "SearchTags"; 32 | var highlight = "$&"; 33 | var camelCaseRegexp = ""; 34 | var secondaryMatcher = ""; 35 | function getHighlightedText(item) { 36 | var ccMatcher = new RegExp(camelCaseRegexp); 37 | var label = item.replace(ccMatcher, highlight); 38 | if (label === item) { 39 | label = item.replace(secondaryMatcher, highlight); 40 | } 41 | return label; 42 | } 43 | function getURLPrefix(ui) { 44 | var urlPrefix=""; 45 | if (useModuleDirectories) { 46 | var slash = "/"; 47 | if (ui.item.category === catModules) { 48 | return ui.item.l + slash; 49 | } else if (ui.item.category === catPackages && ui.item.m) { 50 | return ui.item.m + slash; 51 | } else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) { 52 | $.each(packageSearchIndex, function(index, item) { 53 | if (ui.item.p == item.l) { 54 | urlPrefix = item.m + slash; 55 | } 56 | }); 57 | return urlPrefix; 58 | } else { 59 | return urlPrefix; 60 | } 61 | } 62 | return urlPrefix; 63 | } 64 | var watermark = 'Search'; 65 | $(function() { 66 | $("#search").val(''); 67 | $("#search").prop("disabled", false); 68 | $("#reset").prop("disabled", false); 69 | $("#search").val(watermark).addClass('watermark'); 70 | $("#search").blur(function() { 71 | if ($(this).val().length == 0) { 72 | $(this).val(watermark).addClass('watermark'); 73 | } 74 | }); 75 | $("#search").on('click keydown', function() { 76 | if ($(this).val() == watermark) { 77 | $(this).val('').removeClass('watermark'); 78 | } 79 | }); 80 | $("#reset").click(function() { 81 | $("#search").val(''); 82 | $("#search").focus(); 83 | }); 84 | $("#search").focus(); 85 | $("#search")[0].setSelectionRange(0, 0); 86 | }); 87 | $.widget("custom.catcomplete", $.ui.autocomplete, { 88 | _create: function() { 89 | this._super(); 90 | this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); 91 | }, 92 | _renderMenu: function(ul, items) { 93 | var rMenu = this, 94 | currentCategory = ""; 95 | rMenu.menu.bindings = $(); 96 | $.each(items, function(index, item) { 97 | var li; 98 | if (item.l !== noResult.l && item.category !== currentCategory) { 99 | ul.append("
  • " + item.category + "
  • "); 100 | currentCategory = item.category; 101 | } 102 | li = rMenu._renderItemData(ul, item); 103 | if (item.category) { 104 | li.attr("aria-label", item.category + " : " + item.l); 105 | li.attr("class", "resultItem"); 106 | } else { 107 | li.attr("aria-label", item.l); 108 | li.attr("class", "resultItem"); 109 | } 110 | }); 111 | }, 112 | _renderItem: function(ul, item) { 113 | var label = ""; 114 | if (item.category === catModules) { 115 | label = getHighlightedText(item.l); 116 | } else if (item.category === catPackages) { 117 | label = (item.m) 118 | ? getHighlightedText(item.m + "/" + item.l) 119 | : getHighlightedText(item.l); 120 | } else if (item.category === catTypes) { 121 | label = (item.p) 122 | ? getHighlightedText(item.p + "." + item.l) 123 | : getHighlightedText(item.l); 124 | } else if (item.category === catMembers) { 125 | label = getHighlightedText(item.p + "." + (item.c + "." + item.l)); 126 | } else if (item.category === catSearchTags) { 127 | label = getHighlightedText(item.l); 128 | } else { 129 | label = item.l; 130 | } 131 | var li = $("
  • ").appendTo(ul); 132 | var div = $("
    ").appendTo(li); 133 | if (item.category === catSearchTags) { 134 | if (item.d) { 135 | div.html(label + " (" + item.h + ")
    " 136 | + item.d + "
    "); 137 | } else { 138 | div.html(label + " (" + item.h + ")"); 139 | } 140 | } else { 141 | div.html(label); 142 | } 143 | return li; 144 | } 145 | }); 146 | $(function() { 147 | $("#search").catcomplete({ 148 | minLength: 1, 149 | delay: 100, 150 | source: function(request, response) { 151 | var result = new Array(); 152 | var presult = new Array(); 153 | var tresult = new Array(); 154 | var mresult = new Array(); 155 | var tgresult = new Array(); 156 | var secondaryresult = new Array(); 157 | var displayCount = 0; 158 | var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i"); 159 | camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)"); 160 | var camelCaseMatcher = new RegExp("^" + camelCaseRegexp); 161 | secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i"); 162 | 163 | // Return the nested innermost name from the specified object 164 | function nestedName(e) { 165 | return e.l.substring(e.l.lastIndexOf(".") + 1); 166 | } 167 | 168 | function concatResults(a1, a2) { 169 | a1 = a1.concat(a2); 170 | a2.length = 0; 171 | return a1; 172 | } 173 | 174 | if (moduleSearchIndex) { 175 | var mdleCount = 0; 176 | $.each(moduleSearchIndex, function(index, item) { 177 | item.category = catModules; 178 | if (exactMatcher.test(item.l)) { 179 | result.push(item); 180 | mdleCount++; 181 | } else if (camelCaseMatcher.test(item.l)) { 182 | result.push(item); 183 | } else if (secondaryMatcher.test(item.l)) { 184 | secondaryresult.push(item); 185 | } 186 | }); 187 | displayCount = mdleCount; 188 | result = concatResults(result, secondaryresult); 189 | } 190 | if (packageSearchIndex) { 191 | var pCount = 0; 192 | var pkg = ""; 193 | $.each(packageSearchIndex, function(index, item) { 194 | item.category = catPackages; 195 | pkg = (item.m) 196 | ? (item.m + "/" + item.l) 197 | : item.l; 198 | if (exactMatcher.test(item.l)) { 199 | presult.push(item); 200 | pCount++; 201 | } else if (camelCaseMatcher.test(pkg)) { 202 | presult.push(item); 203 | } else if (secondaryMatcher.test(pkg)) { 204 | secondaryresult.push(item); 205 | } 206 | }); 207 | result = result.concat(concatResults(presult, secondaryresult)); 208 | displayCount = (pCount > displayCount) ? pCount : displayCount; 209 | } 210 | if (typeSearchIndex) { 211 | var tCount = 0; 212 | $.each(typeSearchIndex, function(index, item) { 213 | item.category = catTypes; 214 | var s = nestedName(item); 215 | if (exactMatcher.test(s)) { 216 | tresult.push(item); 217 | tCount++; 218 | } else if (camelCaseMatcher.test(s)) { 219 | tresult.push(item); 220 | } else if (secondaryMatcher.test(item.p + "." + item.l)) { 221 | secondaryresult.push(item); 222 | } 223 | }); 224 | result = result.concat(concatResults(tresult, secondaryresult)); 225 | displayCount = (tCount > displayCount) ? tCount : displayCount; 226 | } 227 | if (memberSearchIndex) { 228 | var mCount = 0; 229 | $.each(memberSearchIndex, function(index, item) { 230 | item.category = catMembers; 231 | var s = nestedName(item); 232 | if (exactMatcher.test(s)) { 233 | mresult.push(item); 234 | mCount++; 235 | } else if (camelCaseMatcher.test(s)) { 236 | mresult.push(item); 237 | } else if (secondaryMatcher.test(item.c + "." + item.l)) { 238 | secondaryresult.push(item); 239 | } 240 | }); 241 | result = result.concat(concatResults(mresult, secondaryresult)); 242 | displayCount = (mCount > displayCount) ? mCount : displayCount; 243 | } 244 | if (tagSearchIndex) { 245 | var tgCount = 0; 246 | $.each(tagSearchIndex, function(index, item) { 247 | item.category = catSearchTags; 248 | if (exactMatcher.test(item.l)) { 249 | tgresult.push(item); 250 | tgCount++; 251 | } else if (secondaryMatcher.test(item.l)) { 252 | secondaryresult.push(item); 253 | } 254 | }); 255 | result = result.concat(concatResults(tgresult, secondaryresult)); 256 | displayCount = (tgCount > displayCount) ? tgCount : displayCount; 257 | } 258 | displayCount = (displayCount > 500) ? displayCount : 500; 259 | var counter = function() { 260 | var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0}; 261 | var f = function(item) { 262 | count[item.category] += 1; 263 | return (count[item.category] <= displayCount); 264 | }; 265 | return f; 266 | }(); 267 | response(result.filter(counter)); 268 | }, 269 | response: function(event, ui) { 270 | if (!ui.content.length) { 271 | ui.content.push(noResult); 272 | } else { 273 | $("#search").empty(); 274 | } 275 | }, 276 | autoFocus: true, 277 | position: { 278 | collision: "flip" 279 | }, 280 | select: function(event, ui) { 281 | if (ui.item.l !== noResult.l) { 282 | var url = getURLPrefix(ui); 283 | if (ui.item.category === catModules) { 284 | if (useModuleDirectories) { 285 | url += "module-summary.html"; 286 | } else { 287 | url = ui.item.l + "-summary.html"; 288 | } 289 | } else if (ui.item.category === catPackages) { 290 | if (ui.item.url) { 291 | url = ui.item.url; 292 | } else { 293 | url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; 294 | } 295 | } else if (ui.item.category === catTypes) { 296 | if (ui.item.url) { 297 | url = ui.item.url; 298 | } else if (ui.item.p === "") { 299 | url += ui.item.l + ".html"; 300 | } else { 301 | url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; 302 | } 303 | } else if (ui.item.category === catMembers) { 304 | if (ui.item.p === "") { 305 | url += ui.item.c + ".html" + "#"; 306 | } else { 307 | url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; 308 | } 309 | if (ui.item.url) { 310 | url += ui.item.url; 311 | } else { 312 | url += ui.item.l; 313 | } 314 | } else if (ui.item.category === catSearchTags) { 315 | url += ui.item.u; 316 | } 317 | if (top !== window) { 318 | parent.classFrame.location = pathtoroot + url; 319 | } else { 320 | window.location.href = pathtoroot + url; 321 | } 322 | $("#search").focus(); 323 | } 324 | } 325 | }); 326 | }); 327 | --------------------------------------------------------------------------------