├── 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 |
Typically the licenses listed for the project are that of the project itself, and not of dependencies.
Copy of the license follows:
68 || GroupId | 65 |ArtifactId | 66 |Version |
|---|---|---|
| org.apache.maven.plugins | 69 |maven-antrun-plugin | 70 |1.3 |
| org.apache.maven.plugins | 73 |maven-assembly-plugin | 74 |2.2-beta-5 |
| org.apache.maven.plugins | 77 |maven-dependency-plugin | 78 |2.8 |
| org.apache.maven.plugins | 81 |maven-release-plugin | 82 |2.5.3 |
| Field | 67 |Value |
|---|---|
| Name | 70 |Paralleldots AI APIs |
| Description | 73 |A Java Wrapper for using Paralleldots AI APIs. |
| Homepage | 76 |https://www.paralleldots.com |
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 |The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.
67 || Image | 70 |Name | 71 |Organization | 73 |Organization URL | |
|---|---|---|---|---|
| Vaibhav Vishwakarma | 77 |vaibhiiitm@gmail.com | 78 |Paralleldots | 79 |https://www.paralleldots.com |
This project uses Git to manage its source code. Instructions on Git use can be found at https://git-scm.com/documentation.
The following is a link to a browsable version of the source repository:
66 |The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):
71 |$ git clone git://github.com/ParallelDots/ParallelDots-Java-API.git
Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).
76 |$ git clone ssh://github.com:ParallelDots/ParallelDots-Java-API.git
<dependency> 66 | <groupId>com.paralleldots</groupId> 67 | <artifactId>paralleldots</artifactId> 68 | <version>1.0.3</version> 69 | </dependency>
<dependency org="com.paralleldots" name="paralleldots" rev="1.0.3"> 78 | <artifact name="paralleldots" type="jar" /> 79 | </dependency>
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 || Document | 68 |Description |
|---|---|
| Dependencies | 71 |This document lists the project's dependencies and provides information on each dependency. |
| Dependency Information | 74 |This document describes how to to include this project as a dependency using various dependency management tools. |
| Distribution Management | 77 |This document provides informations on the distribution management of this project. |
| About | 80 |A Java Wrapper for using Paralleldots AI APIs. |
| Licenses | 83 |This document lists the project license(s). |
| Plugin Management | 86 |This document lists the plugins that are defined through pluginManagement. |
| Plugins | 89 |This document lists the build plugins and the report plugins used by this project. |
| Source Code Management | 92 |This document lists ways to access the online source repository. |
| Summary | 95 |This document lists other related information of this project |
| Team | 98 |This document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another. |
| Class | 105 |Description | 106 |
|---|---|
| App | 109 |110 | |
| Package | 105 |Description | 106 |
|---|---|
| com.paralleldots.paralleldots | 110 |111 | |
| Class | 105 |Description | 106 |
|---|---|
| App | 110 |111 | |
| GroupId | 65 |ArtifactId | 66 |Version |
|---|---|---|
| org.apache.maven.plugins | 69 |maven-clean-plugin | 70 |2.5 |
| org.apache.maven.plugins | 73 |maven-compiler-plugin | 74 |3.1 |
| org.apache.maven.plugins | 77 |maven-deploy-plugin | 78 |2.7 |
| org.apache.maven.plugins | 81 |maven-gpg-plugin | 82 |1.5 |
| org.apache.maven.plugins | 85 |maven-install-plugin | 86 |2.4 |
| org.apache.maven.plugins | 89 |maven-jar-plugin | 90 |2.4 |
| org.apache.maven.plugins | 93 |maven-javadoc-plugin | 94 |2.9.1 |
| org.apache.maven.plugins | 97 |maven-project-info-reports-plugin | 98 |3.0.0 |
| org.apache.maven.plugins | 101 |maven-resources-plugin | 102 |2.6 |
| org.apache.maven.plugins | 105 |maven-site-plugin | 106 |3.7.1 |
| org.apache.maven.plugins | 109 |maven-source-plugin | 110 |2.2.1 |
| org.apache.maven.plugins | 113 |maven-surefire-plugin | 114 |2.12.4 |
| org.sonatype.plugins | 117 |nexus-staging-maven-plugin | 118 |1.6.7 |
| GroupId | 124 |ArtifactId | 125 |Version |
|---|---|---|
| org.apache.maven.plugins | 128 |maven-project-info-reports-plugin | 129 |3.0.0 |
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 |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 |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 |Each annotation type has its own separate page with the following sections:
149 |Each enum has its own separate page with the following sections:
162 |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 |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.
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 |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 |The All Classes link shows all classes and interfaces except non-static nested types.
202 |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 |The Constant Field Values page lists the static final fields and their values.
214 |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 |