diff --git a/.github/workflows/javadoc.yml b/.github/workflows/javadoc.yml deleted file mode 100644 index 51fb1b54..00000000 --- a/.github/workflows/javadoc.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Deploy Javadoc - -on: - push: - branches: - - main - -jobs: - publish: - runs-on: ubuntu-latest - permissions: - contents: write # if you have a protection rule on your repository, you'll need to give write permission to the workflow. - steps: - - name: Deploy JavaDoc 🚀 - uses: MathieuSoysal/Javadoc-publisher.yml@v2.5.0 - with: - #GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - javadoc-branch: main - java-version: 17 - target-folder: javadoc # url will be https://.github.io//javadoc, This can be left as nothing to generate javadocs in the root folder. - project: maven # or gradle - # subdirectories: moduleA moduleB #for subdirectories support, needs to be run with custom command diff --git a/cite.bib b/cite.bib new file mode 100644 index 00000000..82ddc18c --- /dev/null +++ b/cite.bib @@ -0,0 +1,19 @@ +@inproceedings{Leonhardt:et:al:2023, + title = "Unlocking the Heterogeneous Landscape of Big Data {NLP} with {DUUI}", + author = "Leonhardt, Alexander and + Abrami, Giuseppe and + Baumartz, Daniel and + Mehler, Alexander", + editor = "Bouamor, Houda and + Pino, Juan and + Bali, Kalika", + booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2023", + month = dec, + year = "2023", + address = "Singapore", + publisher = "Association for Computational Linguistics", + url = "https://aclanthology.org/2023.findings-emnlp.29", + doi = "10.18653/v1/2023.findings-emnlp.29", + pages = "385--399", + abstract = "Automatic analysis of large corpora is a complex task, especially in terms of time efficiency. This complexity is increased by the fact that flexible, extensible text analysis requires the continuous integration of ever new tools. Since there are no adequate frameworks for these purposes in the field of NLP, and especially in the context of UIMA, that are not outdated or unusable for security reasons, we present a new approach to address the latter task: Docker Unified UIMA Interface (DUUI), a scalable, flexible, lightweight, and feature-rich framework for automatic distributed analysis of text corpora that leverages Big Data experience and virtualization with Docker. We evaluate DUUI{'}s communication approach against a state-of-the-art approach and demonstrate its outstanding behavior in terms of time efficiency, enabling the analysis of big text data.", +} diff --git a/docs/Gemfile b/docs/Gemfile index 1e35ae1b..1030fdb8 100644 --- a/docs/Gemfile +++ b/docs/Gemfile @@ -4,7 +4,8 @@ source "https://rubygems.org" gemspec -gem install kramdown-parser-gfm +gem 'kramdown-parser-gfm', '~> 1.1' +gem 'github-pages' group :jekyll_plugins do gem 'jekyll-commonmark-ghpages' diff --git a/docs/_config.yml b/docs/_config.yml index 37502ff9..b3b10e4f 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -13,11 +13,15 @@ github: owner_url: https://github.com/texttechnologylab owner_name: Texttechnology Lab -#Others -markdown: CommonMarkGhPages +highlighter: rouge +markdown: kramdown +kramdown: + input: GFM theme: jekyll-theme-architect +mermaid: true + # Exclude from processing. # The following items will not be processed, by default. Create a custom list # to override the default setting. diff --git a/docs/_includes/head-custom.html b/docs/_includes/head-custom.html index f7187e79..25787c9d 100644 --- a/docs/_includes/head-custom.html +++ b/docs/_includes/head-custom.html @@ -5,5 +5,8 @@ - + + + + diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index c5936678..dfceced4 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -34,15 +34,23 @@

{{ site.description | default: site.github.project_tagline }}

diff --git a/docs/assets/css/style.scss b/docs/assets/css/style.scss index eb76adf0..4d285418 100644 --- a/docs/assets/css/style.scss +++ b/docs/assets/css/style.scss @@ -14,3 +14,42 @@ header h2{ font-size:2vw; } +.highlight{ + background-color:#fff!important; +} + + +a.emptyButton { + width: 134px; + height: 58px; + padding-top: 22px; + padding-left: 68px; + font-family: 'Architects Daughter', 'Helvetica Neue', Helvetica, Arial, serif; + font-size: 23px; + line-height: 1.2; + color: #fff; +} +a.emptyButton small { + display: block; + font-size: 11px; +} +header a.emptyButton { + position: absolute; + top: 0; + right: 0; + background: transparent url(../images/empty_button.png) 0 0 no-repeat; +} +aside a.emptyButton { + display: block; + width: 138px; + padding-left: 64px; + margin-bottom: 20px; + font-size: 21px; + background: transparent url(../images/empty_button.png) 0 0 no-repeat; +} + +.emptyButton i { + margin-left: -1.2em; + font-size: 2vw; + padding-right: 10pt; +} diff --git a/docs/assets/images/empty_button.png b/docs/assets/images/empty_button.png new file mode 100644 index 00000000..d9747b74 Binary files /dev/null and b/docs/assets/images/empty_button.png differ diff --git a/docs/index.md b/docs/index.md index a35f0e29..01c44ffd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -3,13 +3,25 @@ layout: default --- Automatic analysis of large text corpora is a complex task. This complexity particularly concerns the question of time efficiency. Furthermore, efficient, flexible, and extensible textanalysis requires the continuous integration of every new text analysis tools. Since there are currently, in the area of NLP and especially in the application context of UIMA, only very few to no adequate frameworks for these purposes, which are not simultaneously outdated or can no longer be used for security reasons, this work will present a new approach to fill this gap. To this end, we present Docker Unified UIMA Interface (DUUI), a scalable, flexible, lightweight, and featurerich framework for automated and distributed analysis of text corpora that leverages experience in Big Data analytics and virtualization with Docker. + [![](https://jitpack.io/v/texttechnologylab/DockerUnifiedUIMAInterface.svg)](https://jitpack.io/#texttechnologylab/DockerUnifiedUIMAInterface) ![GitHub License](https://img.shields.io/github/license/Texttechnologylab/DockerUnifiedUIMAInterface) ![GitHub release (with filter)](https://img.shields.io/github/v/release/Texttechnologylab/DockerUnifiedUIMAInterface) -[![Conference](http://img.shields.io/badge/conference-FindingsEMNLP--2023-4b44ce.svg)](https://2023.emnlp.org/) -[![Paper](http://img.shields.io/badge/paper-FindingsEMNLP--2023-fb44ce.svg)](https://aclanthology.org/2023.findings-emnlp.29) +![GitHub last commit](https://img.shields.io/github/last-commit/texttechnologylab/DockerUnifiedUIMAInterface) + + +[![Conference](https://img.shields.io/badge/conference-FindingsEMNLP--2023-4b44ce.svg)](https://2023.emnlp.org/) +[![Paper](https://img.shields.io/badge/paper-FindingsEMNLP--2023-fb44ce.svg)](https://aclanthology.org/2023.findings-emnlp.29) -## Features +# TLDR +* [Javadoc](javadoc) +* [Tutorials](tutorial/Tutorial) + - [Simple Sentiment](tutorial/Sentiment) + - [Advance Hate Check](tutorial/HateCheck) + - [Complex Fact Check](tutorial/FactChecking) +* [Kubernetes-Setup](instructions/Kubernetes) + +# Features Using DUUI, NLP preprocessing on texts can be performed using the following features: * Horizontal and vertical scaling * Capturing heterogeneous annotation landscapes @@ -18,43 +30,44 @@ Using DUUI, NLP preprocessing on texts can be performed using the following feat * Monitoring and error-reporting * Lightweight usability -## Functions +# Functions DUUI has different components which are distinguished into Drivers and Components. -### Components +## Components Components represent the actual analysis methods for recognizing (among others) tokens, named entities, POS and other ingredients of the NLP. All components must be analysis methods in the definition of UIMA. Of course, existing analysis methods based on Java can also be used directly (e.g. dkpro). Independently of this, Components can also be implemented in alternative programming languages, as long as the interface of DUUI is used, they can be targeted and used. -### Driver +## Driver DUUI has a variety of drivers that enable communication as well as the execution of Components in different runtime environments. -#### UIMADriver +### UIMADriver The UIMADriver runs a UIMA Analysis Engine (AE) on the local machine (using local memory and processor) in the same process within the JRE and allows scaling on that machine by replicating the underlying Analysis Engine. This enables the use of all previous analysis methods based on UIMA AE without further adjustments. -#### DockerDriver +### DockerDriver The DUUI core driver runs Components on the local Docker daemon and enables machine-specific resource management. This requires that the AEs are available as Docker images according to DUUI to run as Docker containers. It is not relevant whether the Docker image is stored locally or in a remote registry, since the Docker container is built on startup. This makes it very easy to test new AEs (as local containers) before being released. The distinction between local and remote Docker images is achieved by the URI of the Docker image used -#### RemoteDriver +### RemoteDriver AEs that are not available as containers and whose models can or should not be shared can still be used if they are available via REST. Since DUUI communicates via RESTful, remote endpoints can be used for pre-processing. In general, AEs implemented based on DUUI can be accessed and used via REST, but the scaling is limited regarding request and processing capabilities of the hosting system. In addition, Components addressed via the RemoteDRiver can be used as services. This has advantages for AEs that need to hold large models in memory and thus require a long startup time. To avoid continuous reloading, it may be necessary to start a service once or twice in a dedicated mode and then use a RemoteDriver to access it. To use services, their URL must be specified to enable horizontal scaling. -#### SwarmDriver +### SwarmDriver The SwarmDriver complements the DockerDriver; it uses the same function alities, but its AEs are used as Docker images distributed within the Docker Swarm network. A swarm consists of n nodes and is controlled by a leader node within the Docker framework. However, if an application using DUUI is executed on a Docker leader node, the individual AEs can be executed on multiple swarm nodes. -#### KubernetesDriver +### KubernetesDriver The KubernetesDriver works similarly to the SwarmDriver, but Kubernetes is used as the runtime environment instead of Docker Swarm. -## Requirements +# Requirements ![Java](https://img.shields.io/badge/Java-17-blue) ![Docker](https://img.shields.io/badge/Docker-22.10-green) -## UIMA-Components +# UIMA-Components A list of existing DUUI components as Docker images can be found [here](https://github.com/texttechnologylab/duui-uima). -> [!NOTE] +> **Note** +> > Instructions for creating your own DUUI components and detailed explanations can be found under [Tutorials](tutorial/Tutorial). -## Using +# Using There are basically two ways to use DUUI for preprocessing texts: * Clone the GitHub project. * Include the GitHub project using JitPack via maven (Recommended). @@ -69,7 +82,7 @@ Add the following to your pom file: ``` -After that DUUI can be integrated as a dependency: +After that DUUI can be integrated as a dependency using [![](https://jitpack.io/v/texttechnologylab/DockerUnifiedUIMAInterface.svg)](https://jitpack.io/#texttechnologylab/DockerUnifiedUIMAInterface) ```xml @@ -79,6 +92,56 @@ After that DUUI can be integrated as a dependency: ``` +## Use with Java + +```java +int iWorkers = 2; // define the number of workers + +JCas jc = JCasFactory.createJCas(); // A empty CAS document is defined. + +// load content into jc ... + +// Defining LUA-Context for communication +DUUILuaContext ctx = LuaConsts.getJSON(); + +// Defining a storage backend based on SQlite. +DUUISqliteStorageBackend sqlite = new DUUISqliteStorageBackend("loggingSQlite.db") + .withConnectionPoolSize(iWorkers); + +// The composer is defined and initialized with a standard Lua context as well with a storage backend. +DUUIComposer composer = new DUUIComposer().withLuaContext(ctx) + .withScale(iWorkers).withStorageBackend(sqlite); + +// Instantiate drivers with options (example) +DUUIDockerDriver docker_driver = new DUUIDockerDriver() + .withTimeout(10000); +DUUIRemoteDriver remote_driver = new DUUIRemoteDriver(10000); +DUUIUIMADriver uima_driver = new DUUIUIMADriver().withDebug(true); +DUUISwarmDriver swarm_driver = new DUUISwarmDriver(); + +// A driver must be added before components can be added for it in the composer. After that the composer is able to use the individual drivers. +composer.addDriver(docker_driver, remote_driver, uima_driver, swarm_driver); + +// A new component for the composer is added +composer.add(new DUUIDockerDriver. + Component("docker.texttechnologylab.org/gnfinder:latest") + .withScale(iWorkers) + // The image is reloaded and fetched, regardless of whether it already exists locally (optional) + .withImageFetching()); + +// Adding a UIMA annotator for writing the result of the pipeline as XMI files. +composer.add(new DUUIUIMADriver.Component( + createEngineDescription(XmiWriter.class, + XmiWriter.PARAM_TARGET_LOCATION, sOutputPath, + )).withScale(iWorkers)); + +// The document is processed through the pipeline. In addition, files of entire repositories can be processed. +composer.run(jc); +``` + +> **Note** +> +> Further examples can be found at the [tutorials](tutorial/Tutorial). # Cite diff --git a/docs/instructions/Kubernetes.md b/docs/instructions/Kubernetes.md new file mode 100644 index 00000000..aab8a51a --- /dev/null +++ b/docs/instructions/Kubernetes.md @@ -0,0 +1,134 @@ +--- +layout: default +--- + +# Introduction +This guide is for the script-based setup and configuration of a Kubernetes cluster in order to be used later by DUUI and the associated Kubernetes cluster. + +# Simple Kubernetes Install Scripts +These shell-scripts were made and used for an easier installation of a Kubernetes cluster on a network of Ubuntu 22.04 systems. I recommend to start on a fresh installation of Ubuntu 22.04. + + +# TLDR +- **Create cluster**: Run `init_master_node.sh` to create the cluster and make the system a master node. +- **Add worker node**: Run `init_worker_node.sh` to prepare the system to be added as a worker node. Run `kubeadm_join_command.sh` on the master node and execute output on the to be worker node. +- **GPU capabilities**: Run `enable_gpu.sh` on a worker node with an NVIDIA GPU to make its gpu usable by the cluster. Change files depending on the chosen container runtime; more on this in the section [Configure Docker or Containerd](#configure-docker-or-containerd-for-gpu). + + + +# Basic Cluster setup +## init_master_node +> Run on a system to initialze a cluster and make it a master node. + +Installs Kubernetes packages and makes the system a master node (control plane). Works only for the first master node. For adding consecutive master nodes to the same cluster, the procedure is different. +Installs calico as the pod networking plugin. +Permanently disables swap on the system. + +## init_worker_node +> Run on a system that will be a worker node. + +Installs Kubernetes packages so the node is ready to be added to the cluster as a worker node. To add the system as a worker node run `kubeadm token create --print-join-command` on the master node and execute the output on the system to be added as a worker node. +On the worker node, check if the node has been successfully added by running `kubectl get nodes`. + +## kubeadm_join_command +> Run output on worker nodes to add them to the cluster. + +When executed on the initial master node, prints the command that needs to be executed on a system for it to be added to the cluster as a worker node. + +## reset_kubeadm +Effectively removes a node from the cluster. Runs the `kubeadm reset` command and does some further cleanup. + +## perma_disable_swap +Permanently disables swap by commenting out every line in the `/etc/fstab` file containing the word +" swap ". Not actually used as this functionality is included in the other scripts that need it. + +## setup_networking +Makes changes to networking settings. Not used in the cluster setup. Left in just in case for future use. + + +# GPU +## enable_gpu +> Execute on a node for it to be able to run GPU workloads. + +After running this scripts also run `kubectl describe node ` and look for the "Allocatable" section. If it has the `nvidia.com/gpu` with a value of "1" or more, like this: +``` +Allocatable: + cpu: 12 + ephemeral-storage: 423797574979 + hugepages-1Gi: 0 + hugepages-2Mi: 0 + memory: 32701280Ki + nvidia.com/gpu: 1 +``` +then the installation was successful. Bear in mind that even after correctly installing all the necessary packages and plugins it can take some time until Kubernetes recognizes the GPU on a worker node. +This script has the combined functionality of all of the following gpu scripts. + +### Configure Docker or Containerd for GPU +Before the device plugin can function changes must be made to some files depending on the chosen container runtime on a node. In this installation process we are using containerd, but if you are unsure, run `kubectl get nodes -o wide` to list all nodes and check their configured container runtime. + + +**For containerd as a runtime (used in this whole installation process):** +Create or modify the file `/etc/containerd/config.toml` to contain the following: +``` +version = 2 +[plugins] + [plugins."io.containerd.grpc.v1.cri"] + [plugins."io.containerd.grpc.v1.cri".containerd] + default_runtime_name = "nvidia" + + [plugins."io.containerd.grpc.v1.cri".containerd.runtimes] + [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.nvidia] + privileged_without_host_devices = false + runtime_engine = "" + runtime_root = "" + runtime_type = "io.containerd.runc.v2" + [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.nvidia.options] + BinaryName = "/usr/bin/nvidia-container-runtime" +``` +Afterwards run `sudo nvidia-ctk runtime configure --runtime=containerd` and restart the containerd service using `systemctl restart containerd`. + +--- + +**For docker as a runtime:** +Create or modify the file `/etc/docker/daemon.json` to contain the following: +``` +{ + "default-runtime": "nvidia", + "runtimes": { + "nvidia": { + "path": "/usr/bin/nvidia-container-runtime", + "runtimeArgs": [] + } + } +} +``` +Afterwards run `sudo nvidia-ctk runtime configure --runtime=docker` and restart the docker service using `systemctl restart docker`. + + +## helm_install +Installs helm, a package manager for Kubernetes. Helm is used to install the NVIDIA device plugin for Kubernetes. Run `helm version --short` to check the installation. + +## nvidia_container_toolkit_install +Installs the nvidia-container-tookit, needed by the NVIDIA device plugin for Kubernetes. Run `nvidia-ctk --version` to check the installation. + +## device_plugin_install +Installs the NVIDIA device plugin for Kubernetes using helm. Run `helm list -A` to check if the plugin was installed successfully. + + +# Possible errors +If there is a problem with a node, first try restarting the `docker`, `containerd` and `kubelet` services on that node by running `sudo systemctl restart docker containerd kubelet`. + +## Container runtime is not running +``` +root@kubemaster:~$ sudo kubeadm init + [ERROR CRI]: container runtime is not running: output: time="2022-05-20T02:06:28Z"level=fatal msg="getting status of runtime: rpc error: code = Unimplemented desc = unknown service runtime.v1alpha2.RuntimeService" +``` +If this error comes up while initializing the master node or adding a worker to the cluster, try restarting the `docker` and `containerd` services by running `systemctl restart docker containerd`. If this does not solve the problem delete the file `/etc/containerd/config.toml`, restart containerd and try again. + +## kubectl: Connection refused +The error "Connection refused" when running a kubectl command often means that swap is not turned off. +Turn off swap temporarily by running `sudo swapoff -a` or run the `perma_disable_swap.sh` script. +Some PCs turn swap back on after reboot, even after "permanently" turning it off by changing the `/etc/fstab` file. + +## Node does not have status READY +If a node does not change its status to READY after a while (typically max. 10 minutes) you can restart the services needed by Kubernetes by running `sudo systemctl restart docker containerd kubelet`. If that does not help, restart the system. If that also fails look at the events in the node by running `kubectl describe node ` and try to solve the problem from there. diff --git a/docs/javadoc/allclasses-index.html b/docs/javadoc/allclasses-index.html new file mode 100644 index 00000000..be38ebd9 --- /dev/null +++ b/docs/javadoc/allclasses-index.html @@ -0,0 +1,402 @@ + + + + +All Classes and Interfaces + + + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
+
+
+
Class
+
Description
+ +
 
+ +
 
+ +
+
JCasCollectionReader to read a single article from multiple XML files.
+
+ +
+
JCasCollectionReader to read a single article from multiple XML files.
+
+ +
Deprecated.
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
Deprecated.
+ +
+
Class for asynchronous processing of DUUI readers
+
+ +
 
+ +
+
Interface for a CollectionReader
+
+ +
+
DUUI composer.
+
+ +
 
+ +
+
Represents a tool in the pipeline.
+
+ +
+
Helper class for compression and decompression of strings.
+
+ +
 
+ +
+
Driver for the use of Docker
+
+ +
 
+ +
 
+ +
+
This is the general docker interface which interacts with the docker daemon.
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Lazy file reader.
+
+ +
 
+ +
+
Reader for GerParCor
+
+ +
 
+ +
 
+ +
 
+ +
Deprecated.
+ +
+
Driver for the running of components in Kubernetes
+
+ +
+
Instance of this class is input to composer.add-method and is added to the _Pipeline-attribute of the composer.
+
+ +
+
Class to represent a kubernetes pod: An Instance to process an entire document.
+
+ +
 
+ +
 
+ +
+
Implementation of a communication layer for LUA
+
+ +
+
Class on the use of Lua
+
+ +
+
Class for managing and using Lua contexts
+
+ +
+
Lua sandbox to ensure proper class usage or its restriction by Lua
+
+ +
+
Auxiliary class for the UTF16 problem
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Parallel File Reader - not finished!
+
+ +
 
+ +
+
Encapsulation of a component for a pipeline.
+
+ +
 
+ +
+
Description of a pipeline for the DUUI composer that holds all components.
+
+ +
 
+ +
 
+ +
Deprecated.
+ +
 
+ +
 
+ +
 
+ +
+
This segmentation rules tries to improve segmentation on sentence borders by forbidding to split "brackets" and similar.
+
+ +
 
+ +
+
Automatic simple document segmentation by annotation type.
+
+ +
 
+ +
 
+ +
 
+ +
+
No document segmentation
+
+ +
 
+ +
+
Do not use this class it is not finished and just a raw idea about how one could implement a postgres backend
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
Deprecated.
+ +
 
+ +
 
+ +
+
GerParCor Database Writer
+
+ +
 
+ +
 
+ +
 
+ +
+
Interface for communication between the DUUI composer DUUIComposer and the components IDUUIDriverInterface.
+
+ +
Deprecated.
+ +
 
+ +
+
Interface for all drivers
+
+ +
+
Interface for execution plans of the DUUI composer pipleine.
+
+ +
+
Interface for generating execution plans IDUUIExecutionPlan.
+
+ +
 
+ +
 
+ +
 
+ +
+
The interface for the instance of each component that is executed in a pipeline.
+
+ +
+
Encapsulation of a pipeline component
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Interface for the generation of DUUI-available URLs
+
+ +
 
+ +
+
Lua Consts
+
+ +
+
Class for managing properties for connection to a MongoDB
+
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
+
Serialization interface
+
+ +
 
+ +
 
+ +
 
+ +
+
TTLabXmiWriter to write files to XMI.
+
+ +
 
+ +
+
Interface for WebSocket connections
+
+ +
 
+ +
+
Pretty-prints xml, supplied as a string.
+
+
+
+
+
+
+
+ + diff --git a/docs/javadoc/allpackages-index.html b/docs/javadoc/allpackages-index.html new file mode 100644 index 00000000..f02d70c1 --- /dev/null +++ b/docs/javadoc/allpackages-index.html @@ -0,0 +1,108 @@ + + + + +All Packages + + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+
+
+ + diff --git a/docs/javadoc/constant-values.html b/docs/javadoc/constant-values.html new file mode 100644 index 00000000..20deff05 --- /dev/null +++ b/docs/javadoc/constant-values.html @@ -0,0 +1,336 @@ + + + + +Constant Field Values + + + + + + + + + + + + + + + +
+ +
+
+
+

Constant Field Values

+
+

Contents

+ +
+
+
+

org.texttechnologylab.*

+ + + + + +
+
+
+
+ + diff --git a/docs/javadoc/deprecated-list.html b/docs/javadoc/deprecated-list.html new file mode 100644 index 00000000..b84d7a75 --- /dev/null +++ b/docs/javadoc/deprecated-list.html @@ -0,0 +1,112 @@ + + + + +Deprecated List + + + + + + + + + + + + + + + + + + diff --git a/docs/javadoc/element-list b/docs/javadoc/element-list new file mode 100644 index 00000000..e604ce46 --- /dev/null +++ b/docs/javadoc/element-list @@ -0,0 +1,22 @@ +org.texttechnologylab.DockerUnifiedUIMAInterface +org.texttechnologylab.DockerUnifiedUIMAInterface.composer +org.texttechnologylab.DockerUnifiedUIMAInterface.connection +org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb +org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler +org.texttechnologylab.DockerUnifiedUIMAInterface.driver +org.texttechnologylab.DockerUnifiedUIMAInterface.io +org.texttechnologylab.DockerUnifiedUIMAInterface.io.format +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability +org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport +org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer +org.texttechnologylab.DockerUnifiedUIMAInterface.lua +org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite +org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation +org.texttechnologylab.DockerUnifiedUIMAInterface.tools diff --git a/docs/javadoc/help-doc.html b/docs/javadoc/help-doc.html new file mode 100644 index 00000000..f9e9ec44 --- /dev/null +++ b/docs/javadoc/help-doc.html @@ -0,0 +1,198 @@ + + + + +API Help + + + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Overview

+

The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

+
+
+

Package

+

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

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enum Classes
  • +
  • Exceptions
  • +
  • Errors
  • +
  • Annotation Interfaces
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

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.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Use

+

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.

+
+
+

Tree (Class Hierarchy)

+

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.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

Deprecated API

+

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

+
+
+

Constant Field Values

+

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

+
+
+

Serialized Form

+

Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use 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.

+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+ + diff --git a/docs/javadoc/index-files/index-1.html b/docs/javadoc/index-files/index-1.html new file mode 100644 index 00000000..56c7364b --- /dev/null +++ b/docs/javadoc/index-files/index-1.html @@ -0,0 +1,281 @@ + + + + +A-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

A

+
+
ACTIVE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
add(AnalysisEngine) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent
+
 
+
add(DUUIDockerDriver.Component) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds a Docker component to the pipeline.
+
+
add(DUUIPipelineComponent) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds a component to the pipeline.
+
+
add(DUUIRemoteDriver.Component) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds a Docker component to the pipeline.
+
+
add(DUUISwarmDriver.Component) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds a Docker Swarm component to the pipeline.
+
+
add(DUUIUIMADriver.Component) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds a UIMA component to the pipeline.
+
+
add(DUUIPipelineDescription) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds a component to the pipeline.
+
+
addChild(IDUUIFolderPickerApi.DUUIFolder) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder
+
 
+
addComponent(IDUUIUrlAccessible) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
 
+
addData(long, long, long, long, long, String, long, JCas, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
addDatapoint(Point) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
addDocument(DUUIDocument) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Add a new DUUIDocument for processing
+
+
addDocuments(Collection<DUUIDocument>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds multiple DUUIDocument for processing.
+
+
addDriver(IDUUIDriverInterface) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Register a driver to use with the DUUI composer.
+
+
addDriver(IDUUIDriverInterface...) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Register multiple drivers to use with the DUUI controller.
+
+
addEvent(DUUIEvent.Sender, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Adds an event to the composer.
+
+
addEvent(DUUIEvent.Sender, String, DUUIComposer.DebugLevel) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Add a new Event to the events list of the Composer.
+
+
addFilesToConcurrentList(File, String, ConcurrentLinkedQueue<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
addFilesToConcurrentList(File, String, ConcurrentLinkedQueue<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
addFilesToConcurrentList(File, String, ConcurrentLinkedQueue<String>, AtomicInteger) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
addMetricsForDocument(DUUIPipelineDocumentPerformance) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
addMetricsForDocument(DUUIPipelineDocumentPerformance) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
addMetricsForDocument(DUUIPipelineDocumentPerformance) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend
+
 
+
addMetricsForDocument(DUUIPipelineDocumentPerformance) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
addMetricsForDocument(DUUIPipelineDocumentPerformance) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
addMetricsForDocument(DUUIPipelineDocumentPerformance) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
addNewRun(String, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
addNewRun(String, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
addNewRun(String, DUUIComposer) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend
+
 
+
addNewRun(String, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
addNewRun(String, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
addNewRun(String, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
addSegmentationRule(IDUUISegmentationRule) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
 
+
addSegmentationRule(IDUUISegmentationRule) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy
+
 
+
AdvancedProgressMeter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
 
+
AdvancedProgressMeter(long) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
AnnotationCommentsRemover - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
AnnotationCommentsRemover() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover
+
 
+
AnnotationMapper - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
+
JCasCollectionReader to read a single article from multiple XML files.
+
+
AnnotationMapper() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper
+
 
+
AnnotationRemover - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
+
JCasCollectionReader to read a single article from multiple XML files.
+
+
AnnotationRemover() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationRemover
+
 
+
ANY - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
asDockerDriverComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
asRemoteDriverComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
asService(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
When set to true the pipeline is not shutdown on completion but remains idle until a new request + is made.
+
+
asSwarmDriverComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
asUIMADriverComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
AsyncCollectionReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+
Deprecated.
+
+
AsyncCollectionReader(String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, boolean, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, boolean, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, boolean, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, boolean, String, boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, boolean, String, boolean, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, boolean, String, boolean, String, int, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, boolean, String, boolean, String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, String, boolean, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
AsyncCollectionReader(String, String, IDUUIDocumentHandler, int, int, boolean, String, boolean, String, int, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
Constructor for the AsyncCollectionReader
+
+
AsyncCollectionReader.Builder - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+
Deprecated.
+
AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE - Enum Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+
Deprecated.
+
attemptAutomaticDescription() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
awaitMerge() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
 
+
awaitMerge() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlan
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-10.html b/docs/javadoc/index-files/index-10.html new file mode 100644 index 00000000..47eaa371 --- /dev/null +++ b/docs/javadoc/index-files/index-10.html @@ -0,0 +1,65 @@ + + + + +J-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

J

+
+
join(DUUIPipelineComponent, DUUIPipelineComponentJoinStrategy) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-11.html b/docs/javadoc/index-files/index-11.html new file mode 100644 index 00000000..43426ea7 --- /dev/null +++ b/docs/javadoc/index-files/index-11.html @@ -0,0 +1,152 @@ + + + + +L-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

L

+
+
LARGEST - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Deprecated.
+
LARGEST - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
 
+
LARGEST - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
 
+
LEFT_WINS - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy
+
 
+
listCollections() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to return all existing collections
+
+
listDocuments(String, String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
+
Retrieve a List of documents containing only metadata like name, path and size.
+
+
listDocuments(String, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
listDocuments(String, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
listDocuments(String, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
 
+
listDocuments(String, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
listDocuments(String, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
listDocuments(String, String, boolean) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
+
Retrieve a List of documents containing only metadata like name, path and size.
+
+
listDocuments(List<String>, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
listDocuments(List<String>, String, boolean) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
 
+
listDocuments_(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
load() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile
+
 
+
load() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.IDUUITransport
+
 
+
load() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile
+
 
+
load(InputStream, JCas) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.IDUUIFormat
+
 
+
load(InputStream, JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader
+
 
+
load(InputStream, JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader
+
 
+
load(InputStream, JCas) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader
+
 
+
load(InputStream, JCas) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader
+
 
+
load(Path, String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader
+
 
+
load(Path, String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader
+
 
+
loadComponent(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
loadComponent(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
loadComponent(String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend
+
 
+
loadComponent(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
+
Populates a IDUUIPipelineComponent from a HashMap of options that is loaded from the MongoDB + storage backend.
+
+
loadComponent(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
loadComponent(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
loadDocumentsFromPath(String, String, boolean) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
LocalFile - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport
+
 
+
LocalFile(Path) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile
+
 
+
LuaConsts - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+
Lua Consts
+
+
LuaConsts() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-12.html b/docs/javadoc/index-files/index-12.html new file mode 100644 index 00000000..25444596 --- /dev/null +++ b/docs/javadoc/index-files/index-12.html @@ -0,0 +1,134 @@ + + + + +M-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

M

+
+
main(String...) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
main(String[]) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
main(String[]) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
MAX_ANNOTATIONS_PER_SEGMENT_DEFAULT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
+
Max number of annotations (eg sentences) per segments
+
+
MAX_CHARS_PER_SEGMENT_DEFAULT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
merge() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader
+
 
+
merge() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
merge(List<ByteArrayInputStream>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
 
+
merge(List<ByteArrayInputStream>) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer
+
 
+
merge(List<ByteArrayInputStream>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
 
+
merge(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
+
Merge the segmented JCas back into the output JCas
+
+
merge(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
+
Recombine the segments back into the output cas + Note that this should rely only on the given segment cas to allow for parallelization later
+
+
merge(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
merge(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
merge(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone
+
 
+
merge(JCas) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy
+
 
+
mergeResults(List<ByteArrayInputStream>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
milliToStringShort(long) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
milliToStringShort(long) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
MOINTOR - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
MongoDBConfig - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb
+
+
Class for managing properties for connection to a MongoDB
+
+
MongoDBConfig(File) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Constructor with a File-Object for the Config-File
+
+
MongoDBConfig(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Constructor with the path of the Config-File
+
+
MongoDBConnectionHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb
+
 
+
MongoDBConnectionHandler(MongoDBConfig) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Constructor
+
+
myLuaTestMerging() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
 
+
myLuaTestMerging() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer
+
 
+
myLuaTestMerging() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-13.html b/docs/javadoc/index-files/index-13.html new file mode 100644 index 00000000..b993d350 --- /dev/null +++ b/docs/javadoc/index-files/index-13.html @@ -0,0 +1,69 @@ + + + + +N-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

N

+
+
next() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
next() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
NONE - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-14.html b/docs/javadoc/index-files/index-14.html new file mode 100644 index 00000000..538d672c --- /dev/null +++ b/docs/javadoc/index-files/index-14.html @@ -0,0 +1,125 @@ + + + + +O-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

O

+
+
onClose(int, String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
oneOf(String, String...) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
+
Checks wether the given status is any of the Status names provided as options.
+
+
onError(Exception) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
onMessage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
onMessage(ByteBuffer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
onOpen(ServerHandshake) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface - package org.texttechnologylab.DockerUnifiedUIMAInterface
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.composer - package org.texttechnologylab.DockerUnifiedUIMAInterface.composer
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.connection - package org.texttechnologylab.DockerUnifiedUIMAInterface.connection
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb - package org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler - package org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.driver - package org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io - package org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format - package org.texttechnologylab.DockerUnifiedUIMAInterface.io.format
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader - package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google - package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability - package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport - package org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer - package org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.lua - package org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring - package org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage - package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb - package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb - package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres - package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite - package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation - package org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
org.texttechnologylab.DockerUnifiedUIMAInterface.tools - package org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
OUTPUT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
outputString - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-15.html b/docs/javadoc/index-files/index-15.html new file mode 100644 index 00000000..6bf548fc --- /dev/null +++ b/docs/javadoc/index-files/index-15.html @@ -0,0 +1,175 @@ + + + + +P-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

P

+
+
PARAM_ANNOTATION_KEY - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover
+
 
+
PARAM_compress - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
 
+
PARAM_DBConnection - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
 
+
PARAM_FILENAME_EXTENSION - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
+
Specify the suffix of output files.
+
+
PARAM_LANGUAGE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage
+
 
+
PARAM_MAPPING - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper
+
 
+
PARAM_NAME - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
 
+
PARAM_OUTPUT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor
+
 
+
PARAM_PRETTY_PRINT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
 
+
PARAM_SENTENCE_LENGTH - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter
+
 
+
PARAM_TYPE_LIST - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations
+
 
+
PARAM_TYPE_SYSTEM_FILE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
+
Location to write the type system to.
+
+
PARAM_VERSION - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
+
Defines the XML version used for serializing the data.
+
+
PARM_OUTPUTFILE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
PARM_OUTPUTFILE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
 
+
PRINT_STATISTICS_DEFAULT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
printConcurrencyGraph() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Prints the concurrency graph to std output.
+
+
printConcurrencyGraph(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Show the maximum parallelism
+
+
printConcurrencyGraph(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
 
+
printConcurrencyGraph(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
printConcurrencyGraph(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
printConcurrencyGraph(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
printConcurrencyGraph(String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Visualisation of the concurrency
+
+
printDocument(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationRemover
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveAnnotations
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveMetaData
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage
+
 
+
process(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter
+
 
+
process(JCas, IDUUIInstantiatedPipelineComponent, DUUIPipelineDocumentPerformance) - Static method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
+
Calling the DUUI component
+
+
process_handler(JCas, IDUUIInstantiatedPipelineComponent, DUUIPipelineDocumentPerformance) - Static method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
+
The process merchant describes the use of the component as a web socket
+
+
ProgressMeter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
 
+
ProgressMeter(long) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
pullImage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
pullImage(String, String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
pullImage(String, String, String, AtomicBoolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Attempts to pull a docker image using its tag, and credentials if necessary.
+
+
push_image(String, String, String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-16.html b/docs/javadoc/index-files/index-16.html new file mode 100644 index 00000000..a250ca0b --- /dev/null +++ b/docs/javadoc/index-files/index-16.html @@ -0,0 +1,226 @@ + + + + +R-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

R

+
+
random(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
random(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
random(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
RANDOM - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Deprecated.
+
RANDOM - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
 
+
RANDOM - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
 
+
readDocument(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
readDocument(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
readDocument(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
 
+
readDocument(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
readDocument(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
readDocument(String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
+
Read the content from the specified path and return a document.
+
+
readDocuments(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
readDocuments(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
 
+
readDocuments(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
readDocuments(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
readDocuments(List<String>) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
+
Read the content from all given paths and return a List of documents.
+
+
READER - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
RemoveAnnotations - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
RemoveAnnotations() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveAnnotations
+
 
+
removeIfInTarget(ConcurrentLinkedQueue<String>, String, String, String, String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
Removes files that are present in the target location
+
+
RemoveMetaData - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
RemoveMetaData() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveMetaData
+
 
+
removeOption(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Remove an option by using a key
+
+
RemoveOverlappingAnnotations - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
RemoveOverlappingAnnotations() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations
+
 
+
RenameMetaDataGerParCor - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
RenameMetaDataGerParCor() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor
+
 
+
replaceUmlaut(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData
+
 
+
reset() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
reset() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
reset() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
reset() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
resetPipeline() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Resets the DUUI pipeline to prepare a new run.
+
+
resetService() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
responsiveAfterTime(String, JCas, int, HttpClient, ResponsiveMessageCallback, DUUILuaContext, boolean) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Creation of the communication layer based on the Driver
+
+
restart() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
 
+
RIGHT_WINS - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy
+
 
+
rm_service(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Stops the container with the given container id
+
+
run() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.composer.DUUISegmentedWorker
+
 
+
run() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader
+
 
+
run(String, boolean, boolean, int, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Builds and runs the container with a specified temporary build directory and some flags.
+
+
run(String, boolean, boolean, int, int, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Builds and runs the container with a specified temporary build directory and some flags.
+
+
run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Execute a component in the driver
+
+
run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
 
+
run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Starting a component.
+
+
run(CollectionReaderDescription) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Runs the pipeline.
+
+
run(CollectionReaderDescription, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Runs the pipeline.
+
+
run(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Run the pipeline for a single CAS object.
+
+
run(JCas, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Run the pipeline for a single CAS object.
+
+
run(AsyncCollectionReader, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Runs the DUUI pipeline.
+
+
run(DUUIAsynchronousProcessor, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Run the composer pipeline.
+
+
run(DUUIDocumentReader, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Run the pipeline using a DUUIDocumentReader to retrieve the data from a given source.
+
+
run_service(String, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
run_service(String, int, List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
runSegmented(DUUICollectionDBReader, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Run the pipeline.
+
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-17.html b/docs/javadoc/index-files/index-17.html new file mode 100644 index 00000000..34f9f607 --- /dev/null +++ b/docs/javadoc/index-files/index-17.html @@ -0,0 +1,301 @@ + + + + +S-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

S

+
+
send(byte[]) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt
+
+
Deprecated.
+
Sends serialized JCAS Object and returns result of analysis.
+
+
send(byte[]) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler
+
+
Deprecated.
+
serialize() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.SerializeJSON
+
+
Serialize
+
+
serialize(JCas, ByteArrayOutputStream, Map<String, String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
 
+
serialize(JCas, ByteArrayOutputStream, Map<String, String>) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer
+
+
Serializes a JCas to a byte array output stream by using the LUA script provided by the component.
+
+
serialize(JCas, ByteArrayOutputStream, Map<String, String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
 
+
SerializeJSON<T> - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+
Serialization interface
+
+
setAnalysisEngineParameter(String, Object) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
setBytes(byte[]) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setDebug(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
setDone(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
setDone(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
setDownloadProgress(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setDurationDecode(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setDurationDeserialize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setDurationProcess(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setDurationWait(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setError(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setFinished(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setFinished(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
setFinishedAt() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
Utility method to set the finishedAt timestamp to the current time.
+
+
setFinishedAt(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setInstantiationDuration(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
The instantiation duration is the time it takes to initialize all drivers and components.
+
+
SetLanguage - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
SetLanguage() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage
+
 
+
setLeft(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
setLeft(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
setLimit(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
setLuaContext(DUUILuaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Set Lua-Context
+
+
setLuaContext(DUUILuaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
 
+
setLuaContext(DUUILuaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
setLuaContext(DUUILuaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
setLuaContext(DUUILuaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
setLuaContext(DUUILuaContext) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Method for defining the Lua context to be used, which determines the transfer type between Composer and components.
+
+
setMax(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
setName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setOption(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Adding a key-value pair as an option
+
+
setPath(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setPipelineStatus(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Tracks the current status of Drivers and Components.
+
+
setSize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setStartedAt() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
Utility method to set the startedAt timestamp to the current time.
+
+
setStartedAt(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setStatus(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setup() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
setup() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
setup() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
SETUP - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
setUploadProgress(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
setWriteMode(WriteMode) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
+
Sets the current writemode.
+
+
shouldShutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
shouldTrackErrorDocs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
shouldTrackErrorDocs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
shouldTrackErrorDocs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
+
Whether to track error documents in the database or not
+
+
shouldTrackErrorDocs() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend
+
+
Whether the storage backend should track error documents.
+
+
shouldTrackErrorDocs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
shouldTrackErrorDocs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
shouldTrackErrorDocs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
+
Should error documents be tracked in the database?
+
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
 
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
shutdown() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Shutting down the driver
+
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Shuts down the DUUI controller by signaling every worker and stopping all components.
+
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
shutdown() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend
+
 
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
shutdown() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
SHUTDOWN - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
SimpleSegmenter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
SimpleSegmenter() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter
+
 
+
skipBySize(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
Skips files smaller than skipSmallerFiles
+
+
skipBySize(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
+
Skips files smaller than skipSmallerFiles
+
+
skipBySize(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
+
Skips files smaller than skipSmallerFiles
+
+
SKIPPED - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
SMALLEST - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Deprecated.
+
SMALLEST - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
 
+
SMALLEST - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
 
+
sortBySize(ConcurrentLinkedQueue<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
sortBySize(ConcurrentLinkedQueue<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
sortBySize(ConcurrentLinkedQueue<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
start() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
 
+
stop() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
 
+
stop_container(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Stops the container with the given container id
+
+
STORAGE - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
SYSTEM - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-18.html b/docs/javadoc/index-files/index-18.html new file mode 100644 index 00000000..0fcb86a3 --- /dev/null +++ b/docs/javadoc/index-files/index-18.html @@ -0,0 +1,104 @@ + + + + +T-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

T

+
+
takeFirstOrLast(ConcurrentLinkedQueue<String>, int) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
Takes the first n or last n elements of the queue
+
+
THROW_ON_CONFLICT - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy
+
 
+
Timer - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
Timer() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
 
+
toArangoDocument() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
toInputStream() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
Convert the bytes into a ByteArrayInputStream for processing.
+
+
toJson() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder
+
 
+
toJson() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
toString() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
toString() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
toString() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
TRACE - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
TTLabXmiWriter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer
+
+
TTLabXmiWriter to write files to XMI.
+
+
TTLabXmiWriter() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
 
+
TxtLoader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.format
+
 
+
TxtLoader() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader
+
 
+
TxtLoader(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-19.html b/docs/javadoc/index-files/index-19.html new file mode 100644 index 00000000..7e7527b1 --- /dev/null +++ b/docs/javadoc/index-files/index-19.html @@ -0,0 +1,75 @@ + + + + +U-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

U

+
+
UNKNOWN - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
updateCas(JCas, String, boolean, List<String>) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader
+
 
+
updateCas(JCas, String, boolean, List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
updateObject(String, Document) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
 
+
updateObject(String, Document, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
 
+
upload(DUUIDocument, JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-2.html b/docs/javadoc/index-files/index-2.html new file mode 100644 index 00000000..b31bea15 --- /dev/null +++ b/docs/javadoc/index-files/index-2.html @@ -0,0 +1,99 @@ + + + + +B-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

B

+
+
BorlandExport - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
BorlandExport() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
+
Builds the component.
+
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
build() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
build(Path, List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
builder(DUUIComposer) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
Builder() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
Builder(DUUIComposer) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
ByteReadFuture - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
 
+
ByteReadFuture(String, byte[]) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-20.html b/docs/javadoc/index-files/index-20.html new file mode 100644 index 00000000..3006a05e --- /dev/null +++ b/docs/javadoc/index-files/index-20.html @@ -0,0 +1,127 @@ + + + + +V-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

V

+
+
V1_COMPONENT_ENDPOINT_COMMUNICATION_LAYER - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
V1_COMPONENT_ENDPOINT_PROCESS - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
V1_COMPONENT_ENDPOINT_PROCESS_WEBSOCKET - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
V1_COMPONENT_ENDPOINT_TYPESYSTEM - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
valueOf(String) - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy
+
+
Returns the enum constant of this class with the specified name.
+
+
valueOf(String) - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
+
Returns the enum constant of this class with the specified name.
+
+
valueOf(String) - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Deprecated.
+
Returns the enum constant of this class with the specified name.
+
+
valueOf(String) - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Returns the enum constant of this class with the specified name.
+
+
valueOf(String) - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Returns the enum constant of this class with the specified name.
+
+
valueOf(String) - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
+
Returns the enum constant of this class with the specified name.
+
+
values() - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
values() - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
values() - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Deprecated.
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
values() - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
values() - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
values() - Static method in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-21.html b/docs/javadoc/index-files/index-21.html new file mode 100644 index 00000000..15d641b0 --- /dev/null +++ b/docs/javadoc/index-files/index-21.html @@ -0,0 +1,429 @@ + + + + +W-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

W

+
+
WAITING - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
WARN - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
WebsocketClient - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.connection
+
+
Interface for WebSocket connections
+
+
WebsocketClient(URI) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
WINDOW_SIZE_DEFAULT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences
+
 
+
withAddMetadata(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withAddMetadata(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withAllJavaClasses(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
withAllowedJavaClass(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
withCasPoolsize(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Set CAS poolsize.
+
+
withCheckTarget(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withConnectionPoolSize(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
withConstraint(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withConstraintHost(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withConstraintLabel(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withConstraints(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withConstraints(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withCoroutines(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
withDataReader(IDUUIDocumentHandler) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withDebug() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
withDebug() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
withDebug(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
withDebugCount(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withDebugLevel(DUUIComposer.DebugLevel) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
If debug is enabled Events will be written to standard out
+
+
withDelemiter(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
withDescription(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withDescription(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withDescription(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withDescription(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withDescription(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
withDockerAuth(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withDockerGPU(Boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withDockerImageFetching(Boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withDockerImageName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withDockerRunAfterExit(Boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withDriver(Class<Y>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withEngine(AnalysisEngineDescription) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withFileExtension(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withGlobalLibrary(String, InputStream) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
withGlobalLibrary(String, URI) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
withGlobalLibrary(String, Path) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
withGlobalScripts() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
withGPU(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withIgnoreErrors(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Enable error ignore.
+
+
withIgnoreMissingAnnotations(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
withIgnoring200Error(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withIgnoringHTTP200Error(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withImageFetching() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withImageFetching(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withInputFileExtension(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withInputHandler(IDUUIDocumentHandler) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withInputPath(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withInputPaths(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withInstantiatedPipeline(Vector<DUUIComposer.PipelinePart>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Directly sets the instantiated pipeline.
+
+
withIo(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
withJsonLibrary() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
withLabels(String...) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
+
If used, the Pods get assigned only to GPU-Servers with the specified label.
+
+
withLabels(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
 
+
withLanguage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withLanguage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withLength(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
withLength(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
withLimitInstructionCount(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
withLuaContext(DUUILuaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Set Lua context to use.
+
+
withMaxAnnotationsPerSegment(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
withMaxCharsPerSegment(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
withMaxMemorySize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
withMinimumDocumentSize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withMonitor(DUUIMonitor) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Attach InfluxDB for monitoring.
+
+
withName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
 
+
withName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
withName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Set option "name"
+
+
withOpenConnection(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
withOs(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
withOutputFileExtension(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withOutputHandler(IDUUIDocumentHandler) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withOutputPath(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withOverlap(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
withOverrideMeta() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
withParameter(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Adding a key-value pair as a parameter
+
+
withPrintStatistics(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
withRandomCount(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withRecursive(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withRegistryAuth(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withRegistryAuth(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withRunningAfterDestroy(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withRunningAfterDestroy(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withSandbox(DUUILuaSandbox) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
withSavePath(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withSavePath(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withScale(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withScale(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
+
Sets the number of processes.
+
+
withScale(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withScale(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withScale(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
withScale(Integer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withSegmentationClass(Class) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
withSegmentationClass(Class<? extends Annotation>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
withSegmentationRule(IDUUISegmentationRule) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
 
+
withSegmentationStrategy(Class<T>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withSegmentationStrategy(Class<T>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withSegmentationStrategy(Class<T>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withSegmentationStrategy(DUUISegmentationStrategy) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withSegmentationStrategy(DUUISegmentationStrategy) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withSegmentationStrategy(DUUISegmentationStrategy) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withSegmentationStrategy(DUUISegmentationStrategy) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withSkipSmallerFiles(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withSkipVerification(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Enable or disable DUUI API verification step, by default verification is enabled.
+
+
withSortBySize(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withSortBySize(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
 
+
withSourceDirectory(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withStorageBackend(IDUUIStorageBackend) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Attach a storage backend to collect metrics and errors of a run in a database.
+
+
withSwarmVisualizer() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
withSwarmVisualizer(Integer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
withTargetDirectory(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withTargetFileExtension(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
Deprecated.
+
withTimeout(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Set Timeout
+
+
withUrl(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withUrls(List<String>) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withWebsocket(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withWebsocket(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withWebsocket(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withWebsocket(boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withWebsocket(boolean, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
withWebsocket(boolean, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withWebsocket(boolean, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
withWebsocket(boolean, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
withWindowSize(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences
+
 
+
withWorkers(int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Set the amount of DUUI worker threads for processing, defaults to 1 if not set.
+
+
withWriteInterval(Duration) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
withWriteToView(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
withWriteToView(String, boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
writeDocument(DUUIDocument, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
writeDocument(DUUIDocument, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
writeDocument(DUUIDocument, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
 
+
writeDocument(DUUIDocument, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
writeDocument(DUUIDocument, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
writeDocument(DUUIDocument, String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
+
Write the document to the specified path.
+
+
writeDocuments(List<DUUIDocument>, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
writeDocuments(List<DUUIDocument>, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
 
+
writeDocuments(List<DUUIDocument>, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
writeDocuments(List<DUUIDocument>, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
writeDocuments(List<DUUIDocument>, String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler
+
+
Write a Collection of documents to the specified path.
+
+
WRITER - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-22.html b/docs/javadoc/index-files/index-22.html new file mode 100644 index 00000000..4a3e0f13 --- /dev/null +++ b/docs/javadoc/index-files/index-22.html @@ -0,0 +1,73 @@ + + + + +X-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

X

+
+
XmiLoader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.format
+
 
+
XmiLoader(boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader
+
 
+
XMLFormatter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
+
Pretty-prints xml, supplied as a string.
+
+
XMLFormatter() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-23.html b/docs/javadoc/index-files/index-23.html new file mode 100644 index 00000000..60143899 --- /dev/null +++ b/docs/javadoc/index-files/index-23.html @@ -0,0 +1,83 @@ + + + + +_-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

_

+
+
__internalPinDockerImage(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
_allowAllJavaClasses - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
_allowedJavaClasses - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
_cas_poolsize - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
_client - Static variable in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
 
+
_clients - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
_enable_coroutines - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
_enable_io - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
_enable_os - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
_max_instruction_count - Variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-3.html b/docs/javadoc/index-files/index-3.html new file mode 100644 index 00000000..30aeb466 --- /dev/null +++ b/docs/javadoc/index-files/index-3.html @@ -0,0 +1,189 @@ + + + + +C-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

C

+
+
canAccept(DUUIPipelineComponent) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Check whether the image is available.
+
+
canAccept(DUUIPipelineComponent) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
 
+
canAccept(DUUIPipelineComponent) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
canAccept(DUUIPipelineComponent) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
canAccept(DUUIPipelineComponent) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
canAccept(DUUIPipelineComponent) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Method for checking whether the selected component can be used via the driver.
+
+
CANCELLED - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
canSegment(boolean, int, int, JCas, IDUUISegmentationStrategy) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences
+
 
+
canSegment(boolean, int, int, JCas, IDUUISegmentationStrategy) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationRule
+
+
Can the CAS be segmented at this position?
+
+
ChangeMetaData - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
ChangeMetaData() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData
+
 
+
clearParameters() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
close() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt
+
+
Deprecated.
+
Closes connection to websocket.
+
+
close() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler
+
+
Deprecated.
+
compileFile(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
COMPLETED - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
Component(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
Component(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
+
Constructor.
+
+
Component(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
Component(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
Component(String...) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
Component(List<String>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
Component(AnalysisEngineDescription) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
Component(DUUIPipelineComponent) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
 
+
Component(DUUIPipelineComponent) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
 
+
Component(DUUIPipelineComponent) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
 
+
Component(DUUIPipelineComponent) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
COMPONENT - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
COMPONENT_COMPONENT_UNIQUE_KEY - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
ComponentInstance(String, int, IDUUICommunicationLayer) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
 
+
ComponentInstance(String, int, IDUUICommunicationLayer, IDUUIConnectionHandler) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
 
+
ComponentInstance(String, IDUUICommunicationLayer) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
+
Constructor.
+
+
ComponentInstance(String, IDUUICommunicationLayer, IDUUIConnectionHandler) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
+
Constructor + Sets:
+
+
COMPOSER - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
compress(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper
+
+
Compresses a string.
+
+
compressionMethod - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
copy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
 
+
copy() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer
+
 
+
copy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
 
+
count(BasicDBObject) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to count the results of a given query
+
+
count(BasicDBObject, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to count the results of a given query
+
+
count(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to count the results of a given query
+
+
countAnnotations(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
CountAnnotations - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
CountAnnotations() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
 
+
createDeployment(String, String, int, List<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Creates Deployment for the kubernetes cluster.
+
+
createService(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Creates Service for kubernetes cluster which is matched by selector labels to the previously created deployment.
+
+
CRITICAL - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-4.html b/docs/javadoc/index-files/index-4.html new file mode 100644 index 00000000..6003f0fb --- /dev/null +++ b/docs/javadoc/index-files/index-4.html @@ -0,0 +1,564 @@ + + + + +D-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

D

+
+
DEBUG - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
decode(DUUIDocument) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIDocumentDecoder
+
 
+
DECODE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
decompress(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper
+
+
Decompresses a string.
+
+
deleteDeployment(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Deletes the Deployment from the kubernetes cluster.
+
+
deleteService(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Deletes the service from the kubernetes cluster.
+
+
describeAnalysisEngine() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
deserialize(JCas) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
+
deserialize(JCas, ByteArrayInputStream) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
 
+
deserialize(JCas, ByteArrayInputStream) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer
+
+
Deserializes a byte array input stream to a JCas by using the LUA script provided by the component.
+
+
deserialize(JCas, ByteArrayInputStream) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
 
+
DESERIALIZE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
destroy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
destroy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
 
+
destroy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
 
+
destroy(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Terminate a component
+
+
destroy(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Deletes both the deployment and the service from the kubernetes cluster, if they exist.
+
+
destroy(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
destroy(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
destroy(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
destroy(String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Destruction of a component
+
+
DOCUMENT - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
doQuery(BasicDBObject) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to execute a query
+
+
doQueryIterator(BasicDBObject, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to execute a query
+
+
doQueryIterator(BasicDBObject, String, int, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to execute a query
+
+
doQueryIterator(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to execute a query
+
+
doQueryIterator(String, String, int, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
 
+
doQueryIteratorDistinct(String, Class, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to execute a query
+
+
DOWNLOAD - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
DRIVER - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
DUUI_SEGMENTED_POS - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
DUUI_SEGMENTED_REF - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
DUUIArangoComposerConfiguration - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb
+
 
+
DUUIArangoComposerConfiguration(String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoComposerConfiguration
+
 
+
DUUIArangoDBStorageBackend - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb
+
+
Deprecated.
+
+
DUUIArangoDBStorageBackend(String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
DUUIAsynchronousProcessor - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+
Class for asynchronous processing of DUUI readers
+
+
DUUIAsynchronousProcessor(Set<DUUICollectionReader>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor
+
+
Constructor
+
+
DUUIAsynchronousProcessor(DUUICollectionReader...) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor
+
+
Constructor
+
+
DUUICollectionDBReader - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
 
+
DUUICollectionReader - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+
Interface for a CollectionReader
+
+
DUUIComposer - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
DUUI composer.
+
+
DUUIComposer() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Composer constructor.
+
+
DUUIComposer.DebugLevel - Enum Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
 
+
DUUIComposer.PipelinePart - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
Represents a tool in the pipeline.
+
+
DUUICompressionHelper - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
Helper class for compression and decompression of strings.
+
+
DUUICompressionHelper(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper
+
+
Constructor using a CompressorStreamFactory and a compression method.
+
+
DUUICustomRestricedLuaJavaLib - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
 
+
DUUICustomRestricedLuaJavaLib(String, int, Set<String>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib
+
 
+
DUUICustomRestricedLuaJavaLib(Set<String>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib
+
 
+
DUUIDockerDriver - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Driver for the use of Docker
+
+
DUUIDockerDriver() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
 
+
DUUIDockerDriver(int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Constructor with built-in timeout
+
+
DUUIDockerDriver.Component - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIDockerDriver.ComponentInstance - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIDockerInterface - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
This is the general docker interface which interacts with the docker daemon.
+
+
DUUIDockerInterface() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Creates a default object which connects to the local docker daemon, may need admin rights depending on the docker installation + Depending on the Operating System a different connection URI is used to build the DockerClient.
+
+
DUUIDocument - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUIDocument(String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
DUUIDocument(String, String, byte[]) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
DUUIDocument(String, String, long) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
DUUIDocumentDecoder - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
 
+
DUUIDocumentDecoder() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIDocumentDecoder
+
 
+
DUUIDocumentReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUIDocumentReader.Builder - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUIDropboxDocumentHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUIDropboxDocumentHandler(DbxRequestConfig, DbxCredential) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
+
Create a new DropboxDataReader
+
+
DUUIEvent - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
 
+
DUUIEvent(DUUIEvent.Sender, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
DUUIEvent(DUUIEvent.Sender, String, long) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
DUUIEvent(DUUIEvent.Sender, String, long, DUUIComposer.DebugLevel) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
DUUIEvent(DUUIEvent.Sender, String, DUUIComposer.DebugLevel) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
DUUIEvent.Sender - Enum Class in org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
 
+
DUUIFallbackCommunicationLayer - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
 
+
DUUIFallbackCommunicationLayer() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
 
+
DUUIFileReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUIFileReader(String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
DUUIFileReader(String, String, int, int, boolean, String, boolean, String, int, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
DUUIFileReader(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE - Enum Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUIFileReaderLazy - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
+
Lazy file reader.
+
+
DUUIFileReaderLazy(String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, int, int, boolean, String, boolean, String, int, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy(String, String, String, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE - Enum Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUIFolder(String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder
+
 
+
DUUIGerParCorReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
+
Reader for GerParCor
+
+
DUUIGerParCorReader(MongoDBConfig) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
DUUIGerParCorReader(MongoDBConfig, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
DUUIGoogleDriveDocumentHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUIGoogleDriveDocumentHandler(Credential) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
DUUIHTMLGoogleSERPReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google
+
 
+
DUUIHTMLGoogleSERPReader() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.DUUIHTMLGoogleSERPReader
+
 
+
DUUIHTMLReadabilityReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability
+
 
+
DUUIHTMLReadabilityReader() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader
+
 
+
DUUIInputStream - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
+
Deprecated.
+
+
DUUIInputStream(String, String, long, ByteArrayInputStream) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
Deprecated.
+
DUUIKubernetesDriver - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Driver for the running of components in Kubernetes
+
+
DUUIKubernetesDriver() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Constructor.
+
+
DUUIKubernetesDriver.Component - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Instance of this class is input to composer.add-method and is added to the _Pipeline-attribute of the composer.
+
+
DUUIKubernetesDriver.ComponentInstance - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Class to represent a kubernetes pod: An Instance to process an entire document.
+
+
DUUILinearExecutionPlan(Vector<DUUIComposer.PipelinePart>, JCas) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
 
+
DUUILinearExecutionPlan(Vector<DUUIComposer.PipelinePart>, JCas, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
 
+
DUUILinearExecutionPlanGenerator - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
 
+
DUUILinearExecutionPlanGenerator(Vector<DUUIComposer.PipelinePart>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator
+
 
+
DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
 
+
DUUILocalDocumentHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUILocalDocumentHandler() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
 
+
DUUILuaCommunicationLayer - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+
Implementation of a communication layer for LUA
+
+
DUUILuaCommunicationLayer(String, String, DUUILuaContext) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
 
+
DUUILuaCompiledFile - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+
Class on the use of Lua
+
+
DUUILuaContext - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+
Class for managing and using Lua contexts
+
+
DUUILuaContext() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
 
+
DUUILuaSandbox - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+
Lua sandbox to ensure proper class usage or its restriction by Lua
+
+
DUUILuaSandbox() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
DUUILuaUtils - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+
Auxiliary class for the UTF16 problem
+
+
DUUILuaUtils() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils
+
 
+
DUUIMinioDocumentHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUIMinioDocumentHandler(Provider) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
DUUIMinioDocumentHandler(String, Provider) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
DUUIMinioDocumentHandler(String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
 
+
DUUIMockStorageBackend - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage
+
 
+
DUUIMockStorageBackend() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
DUUIMongoDBDocumentHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUIMongoDBDocumentHandler() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMongoDBDocumentHandler
+
 
+
DUUIMongoDBStorageBackend - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb
+
 
+
DUUIMongoDBStorageBackend(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
DUUIMongoDBStorageBackend(String, boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
DUUIMonitor - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
 
+
DUUIMonitor(String, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
DUUIMonitor(String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
DUUINextcloudDocumentHandler - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
DUUINextcloudDocumentHandler(String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
+
Create a new NextCloudDocumentHandler
+
+
DUUIParallelFileReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
+
Parallel File Reader - not finished!
+
+
DUUIParallelFileReader(File, String, Collection<String>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader
+
 
+
DUUIParallelFileReader(File, String, Collection<String>, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader
+
 
+
DUUIPipelineAnnotationComponent - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
 
+
DUUIPipelineAnnotationComponent(ReproducibleAnnotation) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineAnnotationComponent
+
 
+
DUUIPipelineComponent - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Encapsulation of a component for a pipeline.
+
+
DUUIPipelineComponent() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
DUUIPipelineComponentJoinStrategy - Enum Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIPipelineDescription - Class in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
Description of a pipeline for the DUUI composer that holds all components.
+
+
DUUIPipelineDescription(Vector<DUUIPipelineAnnotationComponent>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription
+
+
Constructor
+
+
DUUIPipelineDocumentPerformance - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage
+
 
+
DUUIPipelineDocumentPerformance(String, long, JCas, boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
DUUIPipelinePerformancePoint - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage
+
 
+
DUUIPipelinePerformancePoint(long, long, long, long, long, String, long, JCas, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
DUUIPostgresSQLStorageBackend - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres
+
+
Deprecated.
+
+
DUUIRemoteDriver - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIRemoteDriver() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
DUUIRemoteDriver(int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
DUUIRemoteDriver.Component - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUISegmentationReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUISegmentationReader(Path, Path, MongoDBConfig, DUUISegmentationStrategy, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
DUUISegmentationReader(Path, Path, MongoDBConfig, DUUISegmentationStrategy, int, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
DUUISegmentationRuleSentences - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
+
This segmentation rules tries to improve segmentation on sentence borders by forbidding to split "brackets" and similar.
+
+
DUUISegmentationRuleSentences() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences
+
 
+
DUUISegmentationStrategy - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
DUUISegmentationStrategy() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
 
+
DUUISegmentationStrategyByAnnotation - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
+
Automatic simple document segmentation by annotation type.
+
+
DUUISegmentationStrategyByAnnotation() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
DUUISegmentationStrategyByAnnotationFast - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
DUUISegmentationStrategyByAnnotationFast() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
DUUISegmentationStrategyByDelemiter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
DUUISegmentationStrategyByDelemiter() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
DUUISegmentationStrategyBySentence - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
DUUISegmentationStrategyBySentence() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyBySentence
+
 
+
DUUISegmentationStrategyNone - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
+
No document segmentation
+
+
DUUISegmentationStrategyNone() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone
+
 
+
DUUISegmentedWorker - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.composer
+
 
+
DUUISegmentedWorker(int, AtomicBoolean, DUUIComposer.PipelinePart, DUUICollectionDBReader, TypeSystemDescription, IDUUIStorageBackend, String, List<String>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.composer.DUUISegmentedWorker
+
 
+
DUUISqliteStorageBackend - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite
+
+
Do not use this class it is not finished and just a raw idea about how one could implement a postgres backend
+
+
DUUISqliteStorageBackend(String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
DUUISqliteStorageBackend(String, boolean) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
DUUIStatus - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
 
+
DUUIStatus() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
DUUISwarmDriver - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUISwarmDriver() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
DUUISwarmDriver(int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
DUUISwarmDriver.Component - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIUIMADriver - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIUIMADriver() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
DUUIUIMADriver.Component - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIUIMADriver.InstantiatedComponent - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
 
+
DUUIWebsocketAlt - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.connection
+
+
Deprecated.
+
+
DUUIWebsocketAlt(String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt
+
+
Deprecated.
+
DUUIWikipediaExtractorReader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
 
+
DUUIWikipediaExtractorReader(String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
DUUIWikipediaExtractorReader(String, String, int) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
DUUIWikipediaExtractorReader(String, String, int, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
DUUIWikipediaExtractorReader(String, String, int, String, String, String) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-5.html b/docs/javadoc/index-files/index-5.html new file mode 100644 index 00000000..45082b8a --- /dev/null +++ b/docs/javadoc/index-files/index-5.html @@ -0,0 +1,87 @@ + + + + +E-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

E

+
+
EmptySofaString - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
 
+
EmptySofaString() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
 
+
equals(Object) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
ERROR - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
export_to_new_image(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Exports a running container to a new image.
+
+
extract_port_mapping(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Extracts port mapping from the container with the given containerid, this is important since docker does auto allocate + ports when not explicitly specifying the port number.
+
+
extract_port_mapping(String, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Extracts port mapping from the container with the given containerid, this is important since docker does auto allocate + ports when not explicitly specifying the port number.
+
+
extract_service_port_mapping(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-6.html b/docs/javadoc/index-files/index-6.html new file mode 100644 index 00000000..7d9d7f0e --- /dev/null +++ b/docs/javadoc/index-files/index-6.html @@ -0,0 +1,123 @@ + + + + +F-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

F

+
+
FAILED - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
finalize(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
+
Get final JCas with the generated annotations
+
+
finalize(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
finalize(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
finalize(JCas) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy
+
 
+
finalizeComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
finalizeRun(String, Instant, Instant) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
finalizeRun(String, Instant, Instant) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
finalizeRun(String, Instant, Instant) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend
+
 
+
finalizeRun(String, Instant, Instant) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
 
+
finalizeRun(String, Instant, Instant) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
finalizeRun(String, Instant, Instant) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
 
+
findDocumentByPath(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Finds a DUUIDocument based on its path.
+
+
finishedLoading() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader
+
 
+
finishedLoading() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
format(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
 
+
formatSize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
formatSize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
formatSize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
formatSize(long) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
fromEncodedJson(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
fromEncodedJson(String, String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
fromInstantiatedPipeline() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Generates merged typesystem of all components from already instantiated pipeline.
+
+
fromJCas(JCas) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription
+
 
+
fromJson(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-7.html b/docs/javadoc/index-files/index-7.html new file mode 100644 index 00000000..6d25ea94 --- /dev/null +++ b/docs/javadoc/index-files/index-7.html @@ -0,0 +1,680 @@ + + + + +G-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

G

+
+
generate(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator
+
 
+
generate(JCas) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlanGenerator
+
+
Generates an execution plan for a given JCas.
+
+
generateComponentPerformance(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
generateURL() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
 
+
generateURL() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
 
+
generateURL() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIUrlAccessible
+
+
Returns the URL of the DUUI-component.
+
+
generateURL() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
 
+
generateURL() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
Deprecated.
+
generateURL() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
Deprecated.
+
GerParCorWriter - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer
+
+
GerParCor Database Writer
+
+
GerParCorWriter() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
 
+
get_ip() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Reads the container gateway bridge ip if inside the container to enable communication between sibling containers or the + localhost ip if one is the host.
+
+
get_logs(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Reads the logs from the container to determine if the container has started up without errors
+
+
get_name() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib
+
 
+
get_typesystem(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Return the TypeSystem used by the given Component
+
+
get_typesystem(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
 
+
get_typesystem(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
get_typesystem(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
get_typesystem(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
get_typesystem(String) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Returns the TypeSystem used for the respective component.
+
+
getAllowedJavaClasses() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
getAnnotation() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineAnnotationComponent
+
 
+
getAnnotations() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getAnnotationTypesCount() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getAnnotatorName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
 
+
getAsyncNextByteArray() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
getAsyncNextByteArray() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getAsyncNextByteArray() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
getAsyncNextByteArray() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
getAsyncNextByteArray() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
getAuthDatabase() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getBytes() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getBytes() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
Deprecated.
+
getBytes() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture
+
 
+
getCachedSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
getCollection() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to return the default Collection
+
+
getCollection(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to return the default Collection
+
+
getCommunicationLayer() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
 
+
getCommunicationLayer() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
 
+
getCommunicationLayer() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIUrlAccessible
+
+
Returns the communication layer.
+
+
getComponent() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
 
+
getComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineAnnotationComponent
+
 
+
getComponents() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription
+
+
Get the components of the pipeline.
+
+
getCompressionMethod() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper
+
 
+
getConnectionCount() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getConnectionSSL() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getConnectionTimeOut() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getConstraints() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getContent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
Deprecated.
+
getCount() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
getCount() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
getCreateViewFromInitialView() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getCurrentMemorySize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getDatabase() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to return the connected Database-Object
+
+
getDebugLevel() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getDebugLevel() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
getDescription() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDigestFromImage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
getDockerAuthPassword() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerAuthPassword(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerAuthUsername() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerAuthUsername(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerClient() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
getDockerGPU() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerGPU(Boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerImageFetching() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerImageFetching(Boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerImageName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerImageName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerRunAfterExit() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDockerRunAfterExit(Boolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDocument() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getDocument() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDocumentPaths() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Collects all DUUIDocument paths
+
+
getDocuments() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getDocumentSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getDocumentSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDocumentTextLength(JCas) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils
+
 
+
getDocumentWaitTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getDone() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader
+
+
How many JCas have already been processed?
+
+
getDone() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getDone() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
getDone() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
getDone() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
getDone() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
getDone() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
getDownloadProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getDriver() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getDriver() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart
+
 
+
getDuration() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
 
+
getDurationAnnotator() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDurationComponentTotal() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDurationDecode() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getDurationDeserialize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getDurationDeserialize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDurationMutexWait() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDurationProcess() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getDurationSerialize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getDurationWait() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getEnabledAllJavaClasses() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
getEnabledCoroutines() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
getEnabledIo() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
getEnabledOs() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
getEngine() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getEngines() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent
+
 
+
getEntities(Set<Annotation>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
getError() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getError() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getEstimatedTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
getEstimatedTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
getEvents() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getFileExtension() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
Retrieve the documents file extension.
+
+
getFilesInDirectoryRecursive(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
getFinalizedRepresentation() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getFinalizedRepresentationHash() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getFinishedAt() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getFolderStructure() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
getFolderStructure() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
getFolderStructure() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
 
+
getFolderStructure() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi
+
 
+
getFolderStructure(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
 
+
getFolderStructure(IDUUIFolderPickerApi.DUUIFolder) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
 
+
getHandler() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
 
+
getHandler() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
 
+
getHandler() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIUrlAccessible
+
+
Returns the connection handler for accessing connectors.
+
+
getIgnoreErrors() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getIgnoringHTTP200Error() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getInitial() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getInstantiatedPipeline() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Allow access to the instantiated pipeline to store it for future reusability.
+
+
getInstantiationDuration() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getJCas() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
 
+
getJCas() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlan
+
 
+
getJSON() - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts
+
 
+
getKey() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getLocalImage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
getMaximumMemory() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getMaxInstructionCount() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
 
+
getMaxMemory() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
getMaxWaitTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getMessage() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
getMongoCollection() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Method for the Collection to connect
+
+
getMongoDatabase() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Method for the Database name
+
+
getMongoHostname() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Method for the Hostname
+
+
getMongoPassword() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Method for the Password
+
+
getMongoPort() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Method for the Port
+
+
getMongoUsername() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
Method for the Username
+
+
getName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
Deprecated.
+
getName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Get option "name"
+
+
getName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart
+
 
+
getName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getNext(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.DUUIHTMLGoogleSERPReader
+
 
+
getNext(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader
+
 
+
getNextCas(JCas) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader
+
+
Fill and get the next JCas
+
+
getNextCas(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getNextCas(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
getNextCas(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
getNextCas(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
getNextCas(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
getNextCas(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
getNextCas(JCas, String, int) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader
+
+
Fill and get the next JCas based on the tool
+
+
getNextCas(JCas, String, int) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
getNextCAS(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
getNextCAS(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor
+
+
Return the next CAS-object
+
+
getNextDocument(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getNextExecutionPlans() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
 
+
getNextExecutionPlans() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlan
+
 
+
getNextSegment() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
+
Get next segment of the JCas
+
+
getNextSegment() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
getNextSegment() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
getNextSegment() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
getNextSegment() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone
+
 
+
getNextSegment() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy
+
 
+
getNodeSelectorTerms(List<String>) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Creates a list of NodeSelectorTerms from a list of labels.
+
+
getNumberOfAnnotations() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getObject(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
 
+
getObject(String, String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
Method to return a MongoDocument with a given ID
+
+
getOption(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Get specific value of an option-parameter
+
+
getOptions() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Return of all configured options
+
+
getParameters() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getParameters() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
 
+
getParameters() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Return of all set parameters
+
+
getPath() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getPath() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
Deprecated.
+
getPath() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture
+
 
+
getPercentage() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
getPercentage() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
getPerformanceMonitoring() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
getPerformancePoints() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getPipeline() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getPipelineComponent() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent
+
 
+
getPipelineComponent() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
 
+
getPipelinePart() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
 
+
getPipelinePart() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlan
+
 
+
getPipelineStatus() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getPrettyString(CAS) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
 
+
getPrettyString(JCas) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
 
+
getProgess() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor
+
+
return the current progress
+
+
getProgress() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader
+
+
Get the Progress
+
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
getProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
getProperties() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getRemainingTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
getRemainingTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
getRunKey() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getRunMap() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
 
+
getScale() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getScale(Integer) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getSegmentationStrategy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getSegmentationStrategy() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart
+
 
+
getSegments() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
getSegments() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
getSender() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
getSerializedSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
 
+
getServerSelectionTimeout() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getSize() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader
+
+
Get size of Collection
+
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
getSize() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
getSize(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
getSize(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
getSize(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
getSize(String) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
getSizeBytes() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
Deprecated.
+
getSkipped() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
getSocketTimeOut() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
 
+
getStartedAt() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getStatus() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getString(CAS) - Static method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
 
+
getText() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
Convert the bytes into a String.
+
+
getTimeSoFar() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
 
+
getTimeSoFar() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
 
+
getTimestamp() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
 
+
getTotalTime() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
 
+
getTypesystem(String, IDUUIInstantiatedPipelineComponent) - Static method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
+
Returns the TypeSystem used for the DUUI component used.
+
+
getUniqueComponentKey() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent
+
 
+
getUploadProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
getUrl() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getUUID() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart
+
 
+
getViewName() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getViewName(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getWebsocketElements() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
getWorkerCount() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
getWriteMode() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
+
Gets the current writemode.
+
+
GZIPLocalFile - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport
+
 
+
GZIPLocalFile(Path) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-8.html b/docs/javadoc/index-files/index-8.html new file mode 100644 index 00000000..766664a3 --- /dev/null +++ b/docs/javadoc/index-files/index-8.html @@ -0,0 +1,101 @@ + + + + +H-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

H

+
+
HANDLER - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
 
+
hasDebug() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
 
+
hasDebug() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
 
+
hasLocalImage(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
hasNext() - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader
+
+
Are there still cas to be processed?
+
+
hasNext() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
hasNext() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
 
+
hasNext() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
 
+
hasNext() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
 
+
hasNext() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
 
+
hasNext() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
 
+
hasOption(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Check whether a key exists as an option.
+
+
hasOutput() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
 
+
HTMLGoogleSERPLoader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google
+
 
+
HTMLGoogleSERPLoader() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader
+
 
+
HTMLReadabilityLoader - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability
+
 
+
HTMLReadabilityLoader() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index-files/index-9.html b/docs/javadoc/index-files/index-9.html new file mode 100644 index 00000000..7ad86fb1 --- /dev/null +++ b/docs/javadoc/index-files/index-9.html @@ -0,0 +1,233 @@ + + + + +I-Index + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form +

I

+
+
iDebugCount - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader
+
 
+
IDLE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
IDUUICommunicationLayer - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
Interface for communication between the DUUI composer DUUIComposer and the components IDUUIDriverInterface.
+
+
IDUUIConnectionHandler - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.connection
+
+
Deprecated.
+
+
IDUUIDocumentHandler - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
IDUUIDriverInterface - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Interface for all drivers
+
+
IDUUIExecutionPlan - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
Interface for execution plans of the DUUI composer pipleine.
+
+
IDUUIExecutionPlanGenerator - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface
+
+
Interface for generating execution plans IDUUIExecutionPlan.
+
+
IDUUIFolderPickerApi - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
IDUUIFolderPickerApi.DUUIFolder - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
 
+
IDUUIFormat - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.io.format
+
 
+
IDUUIInstantiatedPipelineComponent - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
The interface for the instance of each component that is executed in a pipeline.
+
+
IDUUIPipelineComponent - Class in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Encapsulation of a pipeline component
+
+
IDUUIPipelineComponent() - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
default constructor
+
+
IDUUIPipelineComponent(Map<String, Object>) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
constructor
+
+
IDUUIPipelineComponent(IDUUIPipelineComponent) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
Duplication of the options of an existing component
+
+
IDUUISegmentationRule - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
IDUUISegmentationStrategy - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
 
+
IDUUIStorageBackend - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage
+
 
+
IDUUITransport - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport
+
 
+
IDUUIUrlAccessible - Interface in org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+
Interface for the generation of DUUI-available URLs
+
+
IGNORE_MISSING_ANNOTATIONS_DEFAULT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
 
+
IMAGE_START - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
INACTIVE - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
incrementProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
Increment the document progress by one.
+
+
incrementProgress() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
INFO - Enum constant in enum class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
 
+
initialize(JCas) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
+
Set the JCas to be processed, this should reset all state
+
+
initialize(JCas) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy
+
 
+
initialize(UimaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
 
+
initialize(UimaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
 
+
initialize(UimaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
 
+
initialize(UimaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
 
+
initialize(UimaContext) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
 
+
INPUT - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
inside_container() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
Returns true if the code is run inside the container and false otherwise.
+
+
instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
Instantiate the component
+
+
instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Creates Deployment and Service.
+
+
instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
 
+
instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
 
+
instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
 
+
instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean) - Method in interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface
+
+
Initialisation method
+
+
instantiate_pipeline() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Instantiates the DUUI pipeline.
+
+
InstantiatedComponent(DUUIPipelineComponent) - Constructor for class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent
+
 
+
INSTANTIATING - Static variable in class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
 
+
interrupt() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Allow the cancellation of a process by calling interrupt.
+
+
interrupt(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
Allow the cancellation of a process by calling interrupt.
+
+
invoke(Varargs) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib
+
 
+
isCompatible(IDUUIDriverInterface) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
isDebug() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
+
If debug is set to true, print upload and download progress to standard output.
+
+
isEmpty() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
Deprecated.
+
isFinish() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor
+
+
Is the processor, means all collection readers finish?
+
+
isFinished() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
 
+
isFinished() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
 
+
isFinished() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
isMasterNode(KubernetesClient) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
Checks, whether the used Server is the master-node of kubernetes cluster.
+
+
isNumeric(String) - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData
+
 
+
isService() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
isServiceStarted() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
 
+
isSwarmManagerNode() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
 
+
isWebsocket() - Method in class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
 
+
+A B C D E F G H I J L M N O P R S T U V W X _ 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
+
+
+ + diff --git a/docs/javadoc/index.html b/docs/javadoc/index.html new file mode 100644 index 00000000..ade4fe1e --- /dev/null +++ b/docs/javadoc/index.html @@ -0,0 +1,107 @@ + + + + +Overview + + + + + + + + + + + + + + + +
+ +
+
+
+
Packages
+
+
Package
+
Description
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+ +
 
+
+
+
+
+
+ + diff --git a/docs/javadoc/jquery-ui.overrides.css b/docs/javadoc/jquery-ui.overrides.css new file mode 100644 index 00000000..facf852c --- /dev/null +++ b/docs/javadoc/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; + border: 1px solid #F8981D; +} diff --git a/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO b/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 00000000..ff700cd0 --- /dev/null +++ b/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/docs/javadoc/legal/ASSEMBLY_EXCEPTION b/docs/javadoc/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 00000000..065b8d90 --- /dev/null +++ b/docs/javadoc/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/docs/javadoc/legal/LICENSE b/docs/javadoc/legal/LICENSE new file mode 100644 index 00000000..8b400c7a --- /dev/null +++ b/docs/javadoc/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/docs/javadoc/legal/jquery.md b/docs/javadoc/legal/jquery.md new file mode 100644 index 00000000..d468b318 --- /dev/null +++ b/docs/javadoc/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/docs/javadoc/legal/jqueryUI.md b/docs/javadoc/legal/jqueryUI.md new file mode 100644 index 00000000..8bda9d7a --- /dev/null +++ b/docs/javadoc/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/docs/javadoc/member-search-index.js b/docs/javadoc/member-search-index.js new file mode 100644 index 00000000..71db8590 --- /dev/null +++ b/docs/javadoc/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"__internalPinDockerImage(String, String)","u":"__internalPinDockerImage(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"_allowAllJavaClasses"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"_allowedJavaClasses"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"_cas_poolsize"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"_client"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"_clients"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"_enable_coroutines"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"_enable_io"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"_enable_os"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"_max_instruction_count"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"ACTIVE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.InstantiatedComponent","l":"add(AnalysisEngine)","u":"add(org.apache.uima.analysis_engine.AnalysisEngine)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"add(DUUIDockerDriver.Component)","u":"add(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"add(DUUIPipelineComponent)","u":"add(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"add(DUUIPipelineDescription)","u":"add(org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"add(DUUIRemoteDriver.Component)","u":"add(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"add(DUUISwarmDriver.Component)","u":"add(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"add(DUUIUIMADriver.Component)","u":"add(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIFolderPickerApi.DUUIFolder","l":"addChild(IDUUIFolderPickerApi.DUUIFolder)","u":"addChild(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"addComponent(IDUUIUrlAccessible)","u":"addComponent(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIUrlAccessible)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"addData(long, long, long, long, long, String, long, JCas, String)","u":"addData(long,long,long,long,long,java.lang.String,long,org.apache.uima.jcas.JCas,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"addDatapoint(Point)","u":"addDatapoint(com.influxdb.client.write.Point)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"addDocument(DUUIDocument)","u":"addDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"addDocuments(Collection)","u":"addDocuments(java.util.Collection)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"addDriver(IDUUIDriverInterface)","u":"addDriver(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"addDriver(IDUUIDriverInterface...)","u":"addDriver(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface...)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"addEvent(DUUIEvent.Sender, String)","u":"addEvent(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"addEvent(DUUIEvent.Sender, String, DUUIComposer.DebugLevel)","u":"addEvent(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender,java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"addFilesToConcurrentList(File, String, ConcurrentLinkedQueue)","u":"addFilesToConcurrentList(java.io.File,java.lang.String,java.util.concurrent.ConcurrentLinkedQueue)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"addFilesToConcurrentList(File, String, ConcurrentLinkedQueue)","u":"addFilesToConcurrentList(java.io.File,java.lang.String,java.util.concurrent.ConcurrentLinkedQueue)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"addFilesToConcurrentList(File, String, ConcurrentLinkedQueue, AtomicInteger)","u":"addFilesToConcurrentList(java.io.File,java.lang.String,java.util.concurrent.ConcurrentLinkedQueue,java.util.concurrent.atomic.AtomicInteger)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"addMetricsForDocument(DUUIPipelineDocumentPerformance)","u":"addMetricsForDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"addMetricsForDocument(DUUIPipelineDocumentPerformance)","u":"addMetricsForDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"IDUUIStorageBackend","l":"addMetricsForDocument(DUUIPipelineDocumentPerformance)","u":"addMetricsForDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"addMetricsForDocument(DUUIPipelineDocumentPerformance)","u":"addMetricsForDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"addMetricsForDocument(DUUIPipelineDocumentPerformance)","u":"addMetricsForDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"addMetricsForDocument(DUUIPipelineDocumentPerformance)","u":"addMetricsForDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"addNewRun(String, DUUIComposer)","u":"addNewRun(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"addNewRun(String, DUUIComposer)","u":"addNewRun(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"IDUUIStorageBackend","l":"addNewRun(String, DUUIComposer)","u":"addNewRun(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"addNewRun(String, DUUIComposer)","u":"addNewRun(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"addNewRun(String, DUUIComposer)","u":"addNewRun(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"addNewRun(String, DUUIComposer)","u":"addNewRun(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"addSegmentationRule(IDUUISegmentationRule)","u":"addSegmentationRule(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationRule)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"IDUUISegmentationStrategy","l":"addSegmentationRule(IDUUISegmentationRule)","u":"addSegmentationRule(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationRule)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"AdvancedProgressMeter(long)","u":"%3Cinit%3E(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationCommentsRemover","l":"AnnotationCommentsRemover()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationMapper","l":"AnnotationMapper()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationRemover","l":"AnnotationRemover()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"ANY"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"asDockerDriverComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"asRemoteDriverComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"asService(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"asSwarmDriverComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"asUIMADriverComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, boolean, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,boolean,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, IDUUIDocumentHandler, int, int, boolean, String, boolean, String, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler,int,int,boolean,java.lang.String,boolean,java.lang.String,int,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, boolean, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,boolean,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE,java.lang.String,boolean,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE,java.lang.String,boolean,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, boolean, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, boolean, String, boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, boolean, String, boolean, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String,boolean,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, boolean, String, boolean, String, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String,boolean,java.lang.String,int,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, boolean, String, boolean, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String,boolean,java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, int, int, String, boolean, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,java.lang.String,boolean,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"AsyncCollectionReader(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"attemptAutomaticDescription()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan","l":"awaitMerge()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUIExecutionPlan","l":"awaitMerge()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"BorlandExport()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"build()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"build(Path, List)","u":"build(java.nio.file.Path,java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"builder(DUUIComposer)","u":"builder(org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"Builder(DUUIComposer)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ByteReadFuture","l":"ByteReadFuture(String, byte[])","u":"%3Cinit%3E(java.lang.String,byte[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"canAccept(DUUIPipelineComponent)","u":"canAccept(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"canAccept(DUUIPipelineComponent)","u":"canAccept(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"canAccept(DUUIPipelineComponent)","u":"canAccept(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"canAccept(DUUIPipelineComponent)","u":"canAccept(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"canAccept(DUUIPipelineComponent)","u":"canAccept(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"canAccept(DUUIPipelineComponent)","u":"canAccept(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"CANCELLED"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationRuleSentences","l":"canSegment(boolean, int, int, JCas, IDUUISegmentationStrategy)","u":"canSegment(boolean,int,int,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"IDUUISegmentationRule","l":"canSegment(boolean, int, int, JCas, IDUUISegmentationStrategy)","u":"canSegment(boolean,int,int,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"ChangeMetaData","l":"ChangeMetaData()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"clearParameters()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"DUUIWebsocketAlt","l":"close()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"IDUUIConnectionHandler","l":"close()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"compileFile(String)","u":"compileFile(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"COMPLETED"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"COMPONENT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"COMPONENT_COMPONENT_UNIQUE_KEY"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"Component(AnalysisEngineDescription)","u":"%3Cinit%3E(org.apache.uima.analysis_engine.AnalysisEngineDescription)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"Component(DUUIPipelineComponent)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"Component(DUUIPipelineComponent)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"Component(DUUIPipelineComponent)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"Component(DUUIPipelineComponent)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"Component(List)","u":"%3Cinit%3E(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"Component(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"Component(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"Component(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"Component(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"Component(String...)","u":"%3Cinit%3E(java.lang.String...)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.ComponentInstance","l":"ComponentInstance(String, IDUUICommunicationLayer)","u":"%3Cinit%3E(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.ComponentInstance","l":"ComponentInstance(String, IDUUICommunicationLayer, IDUUIConnectionHandler)","u":"%3Cinit%3E(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer,org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.ComponentInstance","l":"ComponentInstance(String, int, IDUUICommunicationLayer)","u":"%3Cinit%3E(java.lang.String,int,org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.ComponentInstance","l":"ComponentInstance(String, int, IDUUICommunicationLayer, IDUUIConnectionHandler)","u":"%3Cinit%3E(java.lang.String,int,org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer,org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"COMPOSER"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUICompressionHelper","l":"compress(String)","u":"compress(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"compressionMethod"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIFallbackCommunicationLayer","l":"copy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUICommunicationLayer","l":"copy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaCommunicationLayer","l":"copy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"count(BasicDBObject)","u":"count(com.mongodb.BasicDBObject)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"count(BasicDBObject, String)","u":"count(com.mongodb.BasicDBObject,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"count(String, String)","u":"count(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"CountAnnotations","l":"CountAnnotations()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"countAnnotations(JCas)","u":"countAnnotations(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"createDeployment(String, String, int, List)","u":"createDeployment(java.lang.String,java.lang.String,int,java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"createService(String)","u":"createService(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"CRITICAL"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"DEBUG"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"DECODE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIDocumentDecoder","l":"decode(DUUIDocument)","u":"decode(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUICompressionHelper","l":"decompress(String)","u":"decompress(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"deleteDeployment(String)","u":"deleteDeployment(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"deleteService(String)","u":"deleteService(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"describeAnalysisEngine()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"DESERIALIZE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"deserialize(JCas)","u":"deserialize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIFallbackCommunicationLayer","l":"deserialize(JCas, ByteArrayInputStream)","u":"deserialize(org.apache.uima.jcas.JCas,java.io.ByteArrayInputStream)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUICommunicationLayer","l":"deserialize(JCas, ByteArrayInputStream)","u":"deserialize(org.apache.uima.jcas.JCas,java.io.ByteArrayInputStream)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaCommunicationLayer","l":"deserialize(JCas, ByteArrayInputStream)","u":"deserialize(org.apache.uima.jcas.JCas,java.io.ByteArrayInputStream)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"destroy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"CountAnnotations","l":"destroy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"EmptySofaString","l":"destroy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"destroy(String)","u":"destroy(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"destroy(String)","u":"destroy(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"destroy(String)","u":"destroy(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"destroy(String)","u":"destroy(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"destroy(String)","u":"destroy(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"destroy(String)","u":"destroy(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"DOCUMENT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"doQuery(BasicDBObject)","u":"doQuery(com.mongodb.BasicDBObject)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"doQueryIterator(BasicDBObject, String)","u":"doQueryIterator(com.mongodb.BasicDBObject,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"doQueryIterator(BasicDBObject, String, int, int)","u":"doQueryIterator(com.mongodb.BasicDBObject,java.lang.String,int,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"doQueryIterator(String, String)","u":"doQueryIterator(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"doQueryIterator(String, String, int, int)","u":"doQueryIterator(java.lang.String,java.lang.String,int,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"doQueryIteratorDistinct(String, Class, String)","u":"doQueryIteratorDistinct(java.lang.String,java.lang.Class,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"DOWNLOAD"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"DRIVER"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"DUUI_SEGMENTED_POS"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"DUUI_SEGMENTED_REF"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoComposerConfiguration","l":"DUUIArangoComposerConfiguration(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"DUUIArangoDBStorageBackend(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIAsynchronousProcessor","l":"DUUIAsynchronousProcessor(DUUICollectionReader...)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader...)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIAsynchronousProcessor","l":"DUUIAsynchronousProcessor(Set)","u":"%3Cinit%3E(java.util.Set)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"DUUIComposer()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUICompressionHelper","l":"DUUICompressionHelper(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUICustomRestricedLuaJavaLib","l":"DUUICustomRestricedLuaJavaLib(Set)","u":"%3Cinit%3E(java.util.Set)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUICustomRestricedLuaJavaLib","l":"DUUICustomRestricedLuaJavaLib(String, int, Set)","u":"%3Cinit%3E(java.lang.String,int,java.util.Set)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"DUUIDockerDriver()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"DUUIDockerDriver(int)","u":"%3Cinit%3E(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"DUUIDockerInterface()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"DUUIDocument(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"DUUIDocument(String, String, byte[])","u":"%3Cinit%3E(java.lang.String,java.lang.String,byte[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"DUUIDocument(String, String, long)","u":"%3Cinit%3E(java.lang.String,java.lang.String,long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIDocumentDecoder","l":"DUUIDocumentDecoder()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"DUUIDropboxDocumentHandler(DbxRequestConfig, DbxCredential)","u":"%3Cinit%3E(com.dropbox.core.DbxRequestConfig,com.dropbox.core.oauth.DbxCredential)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"DUUIEvent(DUUIEvent.Sender, String)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"DUUIEvent(DUUIEvent.Sender, String, DUUIComposer.DebugLevel)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender,java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"DUUIEvent(DUUIEvent.Sender, String, long)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender,java.lang.String,long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"DUUIEvent(DUUIEvent.Sender, String, long, DUUIComposer.DebugLevel)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender,java.lang.String,long,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIFallbackCommunicationLayer","l":"DUUIFallbackCommunicationLayer()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"DUUIFileReader(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"DUUIFileReader(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE,java.lang.String,boolean,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"DUUIFileReader(String, String, int, int, boolean, String, boolean, String, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String,boolean,java.lang.String,int,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, int, int, AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE, String, boolean, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE,java.lang.String,boolean,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, int, int, boolean, String, boolean, String, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,boolean,java.lang.String,boolean,java.lang.String,int,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"DUUIFileReaderLazy(String, String, String, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIFolderPickerApi.DUUIFolder","l":"DUUIFolder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"DUUIGerParCorReader(MongoDBConfig)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"DUUIGerParCorReader(MongoDBConfig, String)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"DUUIGoogleDriveDocumentHandler(Credential)","u":"%3Cinit%3E(com.google.api.client.auth.oauth2.Credential)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","c":"DUUIHTMLGoogleSERPReader","l":"DUUIHTMLGoogleSERPReader()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","c":"DUUIHTMLReadabilityReader","l":"DUUIHTMLReadabilityReader()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIInputStream","l":"DUUIInputStream(String, String, long, ByteArrayInputStream)","u":"%3Cinit%3E(java.lang.String,java.lang.String,long,java.io.ByteArrayInputStream)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"DUUIKubernetesDriver()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan","l":"DUUILinearExecutionPlan(Vector, JCas)","u":"%3Cinit%3E(java.util.Vector,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan","l":"DUUILinearExecutionPlan(Vector, JCas, int)","u":"%3Cinit%3E(java.util.Vector,org.apache.uima.jcas.JCas,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator","l":"DUUILinearExecutionPlanGenerator(Vector)","u":"%3Cinit%3E(java.util.Vector)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUILocalDocumentHandler","l":"DUUILocalDocumentHandler()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaCommunicationLayer","l":"DUUILuaCommunicationLayer(String, String, DUUILuaContext)","u":"%3Cinit%3E(java.lang.String,java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"DUUILuaContext()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"DUUILuaSandbox()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaUtils","l":"DUUILuaUtils()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"DUUIMinioDocumentHandler(Provider)","u":"%3Cinit%3E(io.minio.credentials.Provider)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"DUUIMinioDocumentHandler(String, Provider)","u":"%3Cinit%3E(java.lang.String,io.minio.credentials.Provider)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"DUUIMinioDocumentHandler(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"DUUIMockStorageBackend()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMongoDBDocumentHandler","l":"DUUIMongoDBDocumentHandler()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"DUUIMongoDBStorageBackend(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"DUUIMongoDBStorageBackend(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"DUUIMonitor(String, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"DUUIMonitor(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"DUUINextcloudDocumentHandler(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIParallelFileReader","l":"DUUIParallelFileReader(File, String, Collection)","u":"%3Cinit%3E(java.io.File,java.lang.String,java.util.Collection)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIParallelFileReader","l":"DUUIParallelFileReader(File, String, Collection, int)","u":"%3Cinit%3E(java.io.File,java.lang.String,java.util.Collection,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIPipelineAnnotationComponent","l":"DUUIPipelineAnnotationComponent(ReproducibleAnnotation)","u":"%3Cinit%3E(org.texttechnologylab.duui.ReproducibleAnnotation)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"DUUIPipelineComponent()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIPipelineDescription","l":"DUUIPipelineDescription(Vector)","u":"%3Cinit%3E(java.util.Vector)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"DUUIPipelineDocumentPerformance(String, long, JCas, boolean)","u":"%3Cinit%3E(java.lang.String,long,org.apache.uima.jcas.JCas,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"DUUIPipelinePerformancePoint(long, long, long, long, long, String, long, JCas, String, String)","u":"%3Cinit%3E(long,long,long,long,long,java.lang.String,long,org.apache.uima.jcas.JCas,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"DUUIRemoteDriver()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"DUUIRemoteDriver(int)","u":"%3Cinit%3E(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"DUUISegmentationReader(Path, Path, MongoDBConfig, DUUISegmentationStrategy, int)","u":"%3Cinit%3E(java.nio.file.Path,java.nio.file.Path,org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig,org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"DUUISegmentationReader(Path, Path, MongoDBConfig, DUUISegmentationStrategy, int, int)","u":"%3Cinit%3E(java.nio.file.Path,java.nio.file.Path,org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig,org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy,int,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationRuleSentences","l":"DUUISegmentationRuleSentences()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"DUUISegmentationStrategy()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"DUUISegmentationStrategyByAnnotation()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"DUUISegmentationStrategyByAnnotationFast()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"DUUISegmentationStrategyByDelemiter()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyBySentence","l":"DUUISegmentationStrategyBySentence()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyNone","l":"DUUISegmentationStrategyNone()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.composer","c":"DUUISegmentedWorker","l":"DUUISegmentedWorker(int, AtomicBoolean, DUUIComposer.PipelinePart, DUUICollectionDBReader, TypeSystemDescription, IDUUIStorageBackend, String, List)","u":"%3Cinit%3E(int,java.util.concurrent.atomic.AtomicBoolean,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart,org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader,org.apache.uima.resource.metadata.TypeSystemDescription,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend,java.lang.String,java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"DUUISqliteStorageBackend(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"DUUISqliteStorageBackend(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"DUUIStatus()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"DUUISwarmDriver()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"DUUISwarmDriver(int)","u":"%3Cinit%3E(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"DUUIUIMADriver()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"DUUIWebsocketAlt","l":"DUUIWebsocketAlt(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"DUUIWikipediaExtractorReader(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"DUUIWikipediaExtractorReader(String, String, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"DUUIWikipediaExtractorReader(String, String, int, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"DUUIWikipediaExtractorReader(String, String, int, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"EmptySofaString","l":"EmptySofaString()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"ERROR"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"export_to_new_image(String, String)","u":"export_to_new_image(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"extract_port_mapping(String)","u":"extract_port_mapping(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"extract_port_mapping(String, int)","u":"extract_port_mapping(java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"extract_service_port_mapping(String)","u":"extract_service_port_mapping(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"FAILED"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"finalize(JCas)","u":"finalize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"finalize(JCas)","u":"finalize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"finalize(JCas)","u":"finalize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"IDUUISegmentationStrategy","l":"finalize(JCas)","u":"finalize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"finalizeComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"finalizeRun(String, Instant, Instant)","u":"finalizeRun(java.lang.String,java.time.Instant,java.time.Instant)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"finalizeRun(String, Instant, Instant)","u":"finalizeRun(java.lang.String,java.time.Instant,java.time.Instant)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"IDUUIStorageBackend","l":"finalizeRun(String, Instant, Instant)","u":"finalizeRun(java.lang.String,java.time.Instant,java.time.Instant)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"finalizeRun(String, Instant, Instant)","u":"finalizeRun(java.lang.String,java.time.Instant,java.time.Instant)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"finalizeRun(String, Instant, Instant)","u":"finalizeRun(java.lang.String,java.time.Instant,java.time.Instant)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"finalizeRun(String, Instant, Instant)","u":"finalizeRun(java.lang.String,java.time.Instant,java.time.Instant)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"findDocumentByPath(String)","u":"findDocumentByPath(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionDBReader","l":"finishedLoading()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"finishedLoading()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"XMLFormatter","l":"format(String)","u":"format(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"formatSize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"formatSize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"formatSize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"formatSize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"fromEncodedJson(String)","u":"fromEncodedJson(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"fromEncodedJson(String, String)","u":"fromEncodedJson(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"fromInstantiatedPipeline()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIPipelineDescription","l":"fromJCas(JCas)","u":"fromJCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"fromJson(String)","u":"fromJson(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator","l":"generate(JCas)","u":"generate(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUIExecutionPlanGenerator","l":"generate(JCas)","u":"generate(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"generateComponentPerformance(String)","u":"generateComponentPerformance(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.ComponentInstance","l":"generateURL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.ComponentInstance","l":"generateURL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIUrlAccessible","l":"generateURL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"generateURL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"generateURL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"generateURL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"GerParCorWriter","l":"GerParCorWriter()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"get_ip()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"get_logs(String)","u":"get_logs(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUICustomRestricedLuaJavaLib","l":"get_name()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"get_typesystem(String)","u":"get_typesystem(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"get_typesystem(String)","u":"get_typesystem(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"get_typesystem(String)","u":"get_typesystem(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"get_typesystem(String)","u":"get_typesystem(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"get_typesystem(String)","u":"get_typesystem(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"get_typesystem(String)","u":"get_typesystem(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"getAllowedJavaClasses()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIPipelineAnnotationComponent","l":"getAnnotation()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getAnnotations()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getAnnotationTypesCount()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"getAnnotatorName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"getAsyncNextByteArray()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getAsyncNextByteArray()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"getAsyncNextByteArray()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"getAsyncNextByteArray()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"getAsyncNextByteArray()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getAuthDatabase()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getBytes()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIInputStream","l":"getBytes()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ByteReadFuture","l":"getBytes()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"getCachedSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"getCollection()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"getCollection(String)","u":"getCollection(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.ComponentInstance","l":"getCommunicationLayer()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.ComponentInstance","l":"getCommunicationLayer()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIUrlAccessible","l":"getCommunicationLayer()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"getComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIPipelineAnnotationComponent","l":"getComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIPipelineDescription","l":"getComponents()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUICompressionHelper","l":"getCompressionMethod()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getConnectionCount()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getConnectionSSL()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getConnectionTimeOut()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getConstraints()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIInputStream","l":"getContent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"getCount()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"getCount()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getCreateViewFromInitialView()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getCurrentMemorySize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"getDatabase()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getDebugLevel()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"getDebugLevel()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDescription()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"getDigestFromImage(String)","u":"getDigestFromImage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerAuthPassword()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerAuthPassword(String)","u":"getDockerAuthPassword(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerAuthUsername()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerAuthUsername(String)","u":"getDockerAuthUsername(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"getDockerClient()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerGPU()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerGPU(Boolean)","u":"getDockerGPU(java.lang.Boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerImageFetching()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerImageFetching(Boolean)","u":"getDockerImageFetching(java.lang.Boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerImageName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerImageName(String)","u":"getDockerImageName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerRunAfterExit()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDockerRunAfterExit(Boolean)","u":"getDockerRunAfterExit(java.lang.Boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getDocument()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDocument()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getDocumentPaths()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getDocuments()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getDocumentSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDocumentSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaUtils","l":"getDocumentTextLength(JCas)","u":"getDocumentTextLength(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getDocumentWaitTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionReader","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"getDone()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getDownloadProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getDriver()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.PipelinePart","l":"getDriver()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"Timer","l":"getDuration()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDurationAnnotator()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDurationComponentTotal()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getDurationDecode()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getDurationDeserialize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDurationDeserialize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDurationMutexWait()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getDurationProcess()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getDurationSerialize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getDurationWait()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"getEnabledAllJavaClasses()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"getEnabledCoroutines()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"getEnabledIo()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"getEnabledOs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getEngine()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.InstantiatedComponent","l":"getEngines()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"getEntities(Set)","u":"getEntities(java.util.Set)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getError()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getError()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"getEstimatedTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"getEstimatedTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getEvents()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getFileExtension()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"getFilesInDirectoryRecursive(String)","u":"getFilesInDirectoryRecursive(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getFinalizedRepresentation()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getFinalizedRepresentationHash()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getFinishedAt()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"getFolderStructure()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"getFolderStructure()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"getFolderStructure()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIFolderPickerApi","l":"getFolderStructure()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"getFolderStructure(IDUUIFolderPickerApi.DUUIFolder)","u":"getFolderStructure(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"getFolderStructure(String, String)","u":"getFolderStructure(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.ComponentInstance","l":"getHandler()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.ComponentInstance","l":"getHandler()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIUrlAccessible","l":"getHandler()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getIgnoreErrors()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getIgnoringHTTP200Error()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getInitial()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getInstantiatedPipeline()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getInstantiationDuration()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan","l":"getJCas()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUIExecutionPlan","l":"getJCas()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"LuaConsts","l":"getJSON()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getKey()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"getLocalImage(String)","u":"getLocalImage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getMaximumMemory()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"getMaxInstructionCount()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"getMaxMemory()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMaxWaitTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"getMessage()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMongoCollection()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMongoDatabase()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMongoHostname()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMongoPassword()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMongoPort()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getMongoUsername()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIInputStream","l":"getName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"getName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.PipelinePart","l":"getName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getName(String)","u":"getName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","c":"DUUIHTMLGoogleSERPReader","l":"getNext(JCas)","u":"getNext(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","c":"DUUIHTMLReadabilityReader","l":"getNext(JCas)","u":"getNext(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionReader","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"getNextCas(JCas)","u":"getNextCas(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"getNextCAS(JCas)","u":"getNextCAS(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIAsynchronousProcessor","l":"getNextCAS(JCas)","u":"getNextCAS(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionDBReader","l":"getNextCas(JCas, String, int)","u":"getNextCas(org.apache.uima.jcas.JCas,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"getNextCas(JCas, String, int)","u":"getNextCas(org.apache.uima.jcas.JCas,java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getNextDocument(JCas)","u":"getNextDocument(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan","l":"getNextExecutionPlans()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUIExecutionPlan","l":"getNextExecutionPlans()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"getNextSegment()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"getNextSegment()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"getNextSegment()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"getNextSegment()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyNone","l":"getNextSegment()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"IDUUISegmentationStrategy","l":"getNextSegment()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"getNodeSelectorTerms(List)","u":"getNodeSelectorTerms(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getNumberOfAnnotations()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"getObject(String)","u":"getObject(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"getObject(String, String)","u":"getObject(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"getOption(String)","u":"getOption(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"getOptions()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getParameters()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"getParameters()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"getParameters()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getPath()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIInputStream","l":"getPath()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ByteReadFuture","l":"getPath()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"getPercentage()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"getPercentage()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"getPerformanceMonitoring()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getPerformancePoints()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getPipeline()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.InstantiatedComponent","l":"getPipelineComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"getPipelineComponent()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan","l":"getPipelinePart()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUIExecutionPlan","l":"getPipelinePart()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getPipelineStatus()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"XMLFormatter","l":"getPrettyString(CAS)","u":"getPrettyString(org.apache.uima.cas.CAS)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"XMLFormatter","l":"getPrettyString(JCas)","u":"getPrettyString(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getProgess()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIAsynchronousProcessor","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionReader","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"getProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getProperties()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"getRemainingTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"getRemainingTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getRunKey()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"getRunMap()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getScale()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getScale(Integer)","u":"getScale(java.lang.Integer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getSegmentationStrategy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.PipelinePart","l":"getSegmentationStrategy()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"getSegments()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"getSegments()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"getSender()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelinePerformancePoint","l":"getSerializedSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getServerSelectionTimeout()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionReader","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"getSize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"getSize(String)","u":"getSize(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"getSize(String)","u":"getSize(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"getSize(String)","u":"getSize(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"getSize(String)","u":"getSize(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIInputStream","l":"getSizeBytes()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"getSkipped()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"getSocketTimeOut()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getStartedAt()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getStatus()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"XMLFormatter","l":"getString(CAS)","u":"getString(org.apache.uima.cas.CAS)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getText()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"getTimeSoFar()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"getTimeSoFar()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"getTimestamp()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"getTotalTime()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"getTypesystem(String, IDUUIInstantiatedPipelineComponent)","u":"getTypesystem(java.lang.String,org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"getUniqueComponentKey()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"getUploadProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getUrl()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.PipelinePart","l":"getUUID()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getViewName()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getViewName(String)","u":"getViewName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"getWebsocketElements()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"getWorkerCount()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"getWriteMode()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","c":"GZIPLocalFile","l":"GZIPLocalFile(Path)","u":"%3Cinit%3E(java.nio.file.Path)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"HANDLER"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"hasDebug()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"hasDebug()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"hasLocalImage(String)","u":"hasLocalImage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionReader","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIWikipediaExtractorReader","l":"hasNext()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"hasOption(String)","u":"hasOption(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"hasOutput()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","c":"HTMLGoogleSERPLoader","l":"HTMLGoogleSERPLoader()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","c":"HTMLReadabilityLoader","l":"HTMLReadabilityLoader()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIParallelFileReader","l":"iDebugCount"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"IDLE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"IDUUIPipelineComponent()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"IDUUIPipelineComponent(IDUUIPipelineComponent)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"IDUUIPipelineComponent(Map)","u":"%3Cinit%3E(java.util.Map)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"IGNORE_MISSING_ANNOTATIONS_DEFAULT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"IMAGE_START"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"INACTIVE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"incrementProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"incrementProgress()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"INFO"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"initialize(JCas)","u":"initialize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"IDUUISegmentationStrategy","l":"initialize(JCas)","u":"initialize(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"GerParCorWriter","l":"initialize(UimaContext)","u":"initialize(org.apache.uima.UimaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"initialize(UimaContext)","u":"initialize(org.apache.uima.UimaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"initialize(UimaContext)","u":"initialize(org.apache.uima.UimaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"CountAnnotations","l":"initialize(UimaContext)","u":"initialize(org.apache.uima.UimaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"EmptySofaString","l":"initialize(UimaContext)","u":"initialize(org.apache.uima.UimaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"INPUT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"inside_container()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"instantiate_pipeline()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean)","u":"instantiate(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.apache.uima.jcas.JCas,boolean,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean)","u":"instantiate(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.apache.uima.jcas.JCas,boolean,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean)","u":"instantiate(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.apache.uima.jcas.JCas,boolean,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean)","u":"instantiate(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.apache.uima.jcas.JCas,boolean,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean)","u":"instantiate(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.apache.uima.jcas.JCas,boolean,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"instantiate(DUUIPipelineComponent, JCas, boolean, AtomicBoolean)","u":"instantiate(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.apache.uima.jcas.JCas,boolean,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.InstantiatedComponent","l":"InstantiatedComponent(DUUIPipelineComponent)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"INSTANTIATING"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"interrupt()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"interrupt(String)","u":"interrupt(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUICustomRestricedLuaJavaLib","l":"invoke(Varargs)","u":"invoke(org.luaj.vm2.Varargs)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"isCompatible(IDUUIDriverInterface)","u":"isCompatible(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"isDebug()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"isEmpty()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUIAsynchronousProcessor","l":"isFinish()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"isFinished()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"isFinished()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"isFinished()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"isMasterNode(KubernetesClient)","u":"isMasterNode(io.fabric8.kubernetes.client.KubernetesClient)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"ChangeMetaData","l":"isNumeric(String)","u":"isNumeric(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"isService()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"isServiceStarted()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"isSwarmManagerNode()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"isWebsocket()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"join(DUUIPipelineComponent, DUUIPipelineComponentJoinStrategy)","u":"join(org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent,org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"LARGEST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"LARGEST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"LARGEST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponentJoinStrategy","l":"LEFT_WINS"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"listCollections()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"listDocuments_(String, String)","u":"listDocuments_(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"listDocuments(List, String, boolean)","u":"listDocuments(java.util.List,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"listDocuments(List, String, boolean)","u":"listDocuments(java.util.List,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"listDocuments(String, String)","u":"listDocuments(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"listDocuments(String, String, boolean)","u":"listDocuments(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"listDocuments(String, String, boolean)","u":"listDocuments(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUILocalDocumentHandler","l":"listDocuments(String, String, boolean)","u":"listDocuments(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"listDocuments(String, String, boolean)","u":"listDocuments(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"listDocuments(String, String, boolean)","u":"listDocuments(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"listDocuments(String, String, boolean)","u":"listDocuments(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","c":"GZIPLocalFile","l":"load()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","c":"IDUUITransport","l":"load()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","c":"LocalFile","l":"load()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","c":"IDUUIFormat","l":"load(InputStream, JCas)","u":"load(java.io.InputStream,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","c":"TxtLoader","l":"load(InputStream, JCas)","u":"load(java.io.InputStream,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","c":"XmiLoader","l":"load(InputStream, JCas)","u":"load(java.io.InputStream,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","c":"HTMLGoogleSERPLoader","l":"load(InputStream, JCas)","u":"load(java.io.InputStream,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","c":"HTMLReadabilityLoader","l":"load(InputStream, JCas)","u":"load(java.io.InputStream,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","c":"HTMLGoogleSERPLoader","l":"load(Path, String)","u":"load(java.nio.file.Path,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","c":"HTMLReadabilityLoader","l":"load(Path, String)","u":"load(java.nio.file.Path,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"loadComponent(String)","u":"loadComponent(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"loadComponent(String)","u":"loadComponent(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"IDUUIStorageBackend","l":"loadComponent(String)","u":"loadComponent(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"loadComponent(String)","u":"loadComponent(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"loadComponent(String)","u":"loadComponent(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"loadComponent(String)","u":"loadComponent(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"loadDocumentsFromPath(String, String, boolean)","u":"loadDocumentsFromPath(java.lang.String,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","c":"LocalFile","l":"LocalFile(Path)","u":"%3Cinit%3E(java.nio.file.Path)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"LuaConsts","l":"LuaConsts()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"main(String...)","u":"main(java.lang.String...)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"MAX_ANNOTATIONS_PER_SEGMENT_DEFAULT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"MAX_CHARS_PER_SEGMENT_DEFAULT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionDBReader","l":"merge()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"merge()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"merge(JCas)","u":"merge(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"merge(JCas)","u":"merge(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"merge(JCas)","u":"merge(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"merge(JCas)","u":"merge(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyNone","l":"merge(JCas)","u":"merge(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"IDUUISegmentationStrategy","l":"merge(JCas)","u":"merge(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIFallbackCommunicationLayer","l":"merge(List)","u":"merge(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUICommunicationLayer","l":"merge(List)","u":"merge(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaCommunicationLayer","l":"merge(List)","u":"merge(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"mergeResults(List)","u":"mergeResults(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"milliToStringShort(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"milliToStringShort(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"MOINTOR"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"MongoDBConfig(File)","u":"%3Cinit%3E(java.io.File)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConfig","l":"MongoDBConfig(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"MongoDBConnectionHandler(MongoDBConfig)","u":"%3Cinit%3E(org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIFallbackCommunicationLayer","l":"myLuaTestMerging()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUICommunicationLayer","l":"myLuaTestMerging()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaCommunicationLayer","l":"myLuaTestMerging()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"next()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"next()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"NONE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"onClose(int, String, boolean)","u":"onClose(int,java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"oneOf(String, String...)","u":"oneOf(java.lang.String,java.lang.String...)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"onError(Exception)","u":"onError(java.lang.Exception)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"onMessage(ByteBuffer)","u":"onMessage(java.nio.ByteBuffer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"onMessage(String)","u":"onMessage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"onOpen(ServerHandshake)","u":"onOpen(org.java_websocket.handshake.ServerHandshake)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"OUTPUT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"outputString"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationCommentsRemover","l":"PARAM_ANNOTATION_KEY"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"GerParCorWriter","l":"PARAM_compress"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"GerParCorWriter","l":"PARAM_DBConnection"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"PARAM_FILENAME_EXTENSION"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"SetLanguage","l":"PARAM_LANGUAGE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationMapper","l":"PARAM_MAPPING"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"CountAnnotations","l":"PARAM_NAME"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RenameMetaDataGerParCor","l":"PARAM_OUTPUT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"PARAM_PRETTY_PRINT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"SimpleSegmenter","l":"PARAM_SENTENCE_LENGTH"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveOverlappingAnnotations","l":"PARAM_TYPE_LIST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"PARAM_TYPE_SYSTEM_FILE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"PARAM_VERSION"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"PARM_OUTPUTFILE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"EmptySofaString","l":"PARM_OUTPUTFILE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"PRINT_STATISTICS_DEFAULT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"printConcurrencyGraph()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"printConcurrencyGraph(String)","u":"printConcurrencyGraph(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"printConcurrencyGraph(String)","u":"printConcurrencyGraph(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"printConcurrencyGraph(String)","u":"printConcurrencyGraph(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"printConcurrencyGraph(String)","u":"printConcurrencyGraph(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"printConcurrencyGraph(String)","u":"printConcurrencyGraph(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"printConcurrencyGraph(String)","u":"printConcurrencyGraph(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"XMLFormatter","l":"printDocument(String)","u":"printDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"process_handler(JCas, IDUUIInstantiatedPipelineComponent, DUUIPipelineDocumentPerformance)","u":"process_handler(org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"GerParCorWriter","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationCommentsRemover","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationMapper","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"AnnotationRemover","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"BorlandExport","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"ChangeMetaData","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"CountAnnotations","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"EmptySofaString","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveAnnotations","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveMetaData","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveOverlappingAnnotations","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RenameMetaDataGerParCor","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"SetLanguage","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"SimpleSegmenter","l":"process(JCas)","u":"process(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIInstantiatedPipelineComponent","l":"process(JCas, IDUUIInstantiatedPipelineComponent, DUUIPipelineDocumentPerformance)","u":"process(org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"ProgressMeter(long)","u":"%3Cinit%3E(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"pullImage(String)","u":"pullImage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"pullImage(String, String, String)","u":"pullImage(java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"pullImage(String, String, String, AtomicBoolean)","u":"pullImage(java.lang.String,java.lang.String,java.lang.String,java.util.concurrent.atomic.AtomicBoolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"push_image(String, String, String, String)","u":"push_image(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"RANDOM"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"RANDOM"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"RANDOM"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"random(ConcurrentLinkedQueue, int)","u":"random(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"random(ConcurrentLinkedQueue, int)","u":"random(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"random(ConcurrentLinkedQueue, int)","u":"random(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"readDocument(String)","u":"readDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"readDocument(String)","u":"readDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUILocalDocumentHandler","l":"readDocument(String)","u":"readDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"readDocument(String)","u":"readDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"readDocument(String)","u":"readDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"readDocument(String)","u":"readDocument(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"readDocuments(List)","u":"readDocuments(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUILocalDocumentHandler","l":"readDocuments(List)","u":"readDocuments(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"readDocuments(List)","u":"readDocuments(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"readDocuments(List)","u":"readDocuments(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"readDocuments(List)","u":"readDocuments(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"READER"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveAnnotations","l":"RemoveAnnotations()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"removeIfInTarget(ConcurrentLinkedQueue, String, String, String, String)","u":"removeIfInTarget(java.util.concurrent.ConcurrentLinkedQueue,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveMetaData","l":"RemoveMetaData()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"removeOption(String)","u":"removeOption(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RemoveOverlappingAnnotations","l":"RemoveOverlappingAnnotations()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"RenameMetaDataGerParCor","l":"RenameMetaDataGerParCor()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"ChangeMetaData","l":"replaceUmlaut(String)","u":"replaceUmlaut(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"reset()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"reset()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"reset()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"reset()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"resetPipeline()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"resetService()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"responsiveAfterTime(String, JCas, int, HttpClient, ResponsiveMessageCallback, DUUILuaContext, boolean)","u":"responsiveAfterTime(java.lang.String,org.apache.uima.jcas.JCas,int,java.net.http.HttpClient,org.texttechnologylab.DockerUnifiedUIMAInterface.driver.ResponsiveMessageCallback,org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"Timer","l":"restart()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponentJoinStrategy","l":"RIGHT_WINS"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"rm_service(String)","u":"rm_service(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"run_service(String, int)","u":"run_service(java.lang.String,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"run_service(String, int, List)","u":"run_service(java.lang.String,int,java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.composer","c":"DUUISegmentedWorker","l":"run()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIParallelFileReader","l":"run()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(AsyncCollectionReader, String)","u":"run(org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(CollectionReaderDescription)","u":"run(org.apache.uima.collection.CollectionReaderDescription)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(CollectionReaderDescription, String)","u":"run(org.apache.uima.collection.CollectionReaderDescription,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(DUUIAsynchronousProcessor, String)","u":"run(org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(DUUIDocumentReader, String)","u":"run(org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(JCas)","u":"run(org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"run(JCas, String)","u":"run(org.apache.uima.jcas.JCas,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"run(String, boolean, boolean, int, boolean)","u":"run(java.lang.String,boolean,boolean,int,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"run(String, boolean, boolean, int, int, boolean)","u":"run(java.lang.String,boolean,boolean,int,int,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer)","u":"run(java.lang.String,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer)","u":"run(java.lang.String,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer)","u":"run(java.lang.String,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer)","u":"run(java.lang.String,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer)","u":"run(java.lang.String,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"run(String, JCas, DUUIPipelineDocumentPerformance, DUUIComposer)","u":"run(java.lang.String,org.apache.uima.jcas.JCas,org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance,org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"runSegmented(DUUICollectionDBReader, String)","u":"runSegmented(org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"DUUIWebsocketAlt","l":"send(byte[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"IDUUIConnectionHandler","l":"send(byte[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"SerializeJSON","l":"serialize()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIFallbackCommunicationLayer","l":"serialize(JCas, ByteArrayOutputStream, Map)","u":"serialize(org.apache.uima.jcas.JCas,java.io.ByteArrayOutputStream,java.util.Map)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"IDUUICommunicationLayer","l":"serialize(JCas, ByteArrayOutputStream, Map)","u":"serialize(org.apache.uima.jcas.JCas,java.io.ByteArrayOutputStream,java.util.Map)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaCommunicationLayer","l":"serialize(JCas, ByteArrayOutputStream, Map)","u":"serialize(org.apache.uima.jcas.JCas,java.io.ByteArrayOutputStream,java.util.Map)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"setAnalysisEngineParameter(String, Object)","u":"setAnalysisEngineParameter(java.lang.String,java.lang.Object)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setBytes(byte[])"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"setDebug(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"setDone(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"setDone(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setDownloadProgress(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setDurationDecode(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setDurationDeserialize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setDurationProcess(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setDurationWait(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setError(String)","u":"setError(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setFinished(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"setFinished(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setFinishedAt()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setFinishedAt(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"setInstantiationDuration(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"SetLanguage","l":"SetLanguage()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"setLeft(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"setLeft(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"setLimit(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"setLuaContext(DUUILuaContext)","u":"setLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"setLuaContext(DUUILuaContext)","u":"setLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"setLuaContext(DUUILuaContext)","u":"setLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"setLuaContext(DUUILuaContext)","u":"setLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"setLuaContext(DUUILuaContext)","u":"setLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"setLuaContext(DUUILuaContext)","u":"setLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"setMax(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"setOption(String, String)","u":"setOption(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setPath(String)","u":"setPath(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"setPipelineStatus(String, String)","u":"setPipelineStatus(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setSize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setStartedAt()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setStartedAt(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setStatus(String)","u":"setStatus(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"SETUP"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"setup()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"setup()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"setup()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"setUploadProgress(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"setWriteMode(WriteMode)","u":"setWriteMode(com.dropbox.core.v2.files.WriteMode)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"shouldShutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"IDUUIStorageBackend","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"shouldTrackErrorDocs()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"SHUTDOWN"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIDriverInterface","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","c":"DUUIArangoDBStorageBackend","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIMockStorageBackend","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"IDUUIStorageBackend","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","c":"DUUIMongoDBStorageBackend","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","c":"DUUIPostgresSQLStorageBackend","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"shutdown()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"SimpleSegmenter","l":"SimpleSegmenter()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"skipBySize(ConcurrentLinkedQueue, int)","u":"skipBySize(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"skipBySize(ConcurrentLinkedQueue, int)","u":"skipBySize(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"skipBySize(ConcurrentLinkedQueue, int)","u":"skipBySize(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"SKIPPED"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"SMALLEST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"SMALLEST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"SMALLEST"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"sortBySize(ConcurrentLinkedQueue)","u":"sortBySize(java.util.concurrent.ConcurrentLinkedQueue)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader","l":"sortBySize(ConcurrentLinkedQueue)","u":"sortBySize(java.util.concurrent.ConcurrentLinkedQueue)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy","l":"sortBySize(ConcurrentLinkedQueue)","u":"sortBySize(java.util.concurrent.ConcurrentLinkedQueue)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"Timer","l":"start()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIDockerInterface","l":"stop_container(String)","u":"stop_container(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"Timer","l":"stop()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"STORAGE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"SYSTEM"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"takeFirstOrLast(ConcurrentLinkedQueue, int)","u":"takeFirstOrLast(java.util.concurrent.ConcurrentLinkedQueue,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponentJoinStrategy","l":"THROW_ON_CONFLICT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"Timer","l":"Timer()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","c":"DUUIPipelineDocumentPerformance","l":"toArangoDocument()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDocument","l":"toInputStream()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIFolderPickerApi.DUUIFolder","l":"toJson()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"toJson()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"ProgressMeter","l":"toString()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"AdvancedProgressMeter","l":"toString()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent","l":"toString()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"TRACE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","c":"TTLabXmiWriter","l":"TTLabXmiWriter()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","c":"TxtLoader","l":"TxtLoader()","u":"%3Cinit%3E()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","c":"TxtLoader","l":"TxtLoader(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"UNKNOWN"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"DUUICollectionDBReader","l":"updateCas(JCas, String, boolean, List)","u":"updateCas(org.apache.uima.jcas.JCas,java.lang.String,boolean,java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUISegmentationReader","l":"updateCas(JCas, String, boolean, List)","u":"updateCas(org.apache.uima.jcas.JCas,java.lang.String,boolean,java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"updateObject(String, Document)","u":"updateObject(java.lang.String,org.bson.Document)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","c":"MongoDBConnectionHandler","l":"updateObject(String, Document, String)","u":"updateObject(java.lang.String,org.bson.Document,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader","l":"upload(DUUIDocument, JCas)","u":"upload(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,org.apache.uima.jcas.JCas)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"V1_COMPONENT_ENDPOINT_COMMUNICATION_LAYER"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"V1_COMPONENT_ENDPOINT_PROCESS"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"V1_COMPONENT_ENDPOINT_PROCESS_WEBSOCKET"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"V1_COMPONENT_ENDPOINT_TYPESYSTEM"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponentJoinStrategy","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponentJoinStrategy","l":"values()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"values()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"values()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"values()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE","l":"values()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"values()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIStatus","l":"WAITING"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer.DebugLevel","l":"WARN"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","c":"WebsocketClient","l":"WebsocketClient(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationRuleSentences","l":"WINDOW_SIZE_DEFAULT"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withAddMetadata(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withAddMetadata(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"withAllJavaClasses(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"withAllowedJavaClass(String)","u":"withAllowedJavaClass(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withCasPoolsize(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withCheckTarget(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","c":"DUUISqliteStorageBackend","l":"withConnectionPoolSize(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withConstraint(String)","u":"withConstraint(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withConstraintHost(String)","u":"withConstraintHost(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withConstraintLabel(String, String)","u":"withConstraintLabel(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withConstraints(List)","u":"withConstraints(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withConstraints(List)","u":"withConstraints(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"withCoroutines(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withDataReader(IDUUIDocumentHandler)","u":"withDataReader(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"withDebug()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"withDebug()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver","l":"withDebug(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withDebugCount(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withDebugLevel(DUUIComposer.DebugLevel)","u":"withDebugLevel(org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"withDelemiter(String)","u":"withDelemiter(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withDescription(String)","u":"withDescription(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDescription(String)","u":"withDescription(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withDescription(String)","u":"withDescription(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withDescription(String)","u":"withDescription(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"withDescription(String)","u":"withDescription(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDockerAuth(String, String)","u":"withDockerAuth(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDockerGPU(Boolean)","u":"withDockerGPU(java.lang.Boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDockerImageFetching(Boolean)","u":"withDockerImageFetching(java.lang.Boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDockerImageName(String)","u":"withDockerImageName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDockerRunAfterExit(Boolean)","u":"withDockerRunAfterExit(java.lang.Boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withDriver(Class)","u":"withDriver(java.lang.Class)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withEngine(AnalysisEngineDescription)","u":"withEngine(org.apache.uima.analysis_engine.AnalysisEngineDescription)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withFileExtension(String)","u":"withFileExtension(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"withGlobalLibrary(String, InputStream)","u":"withGlobalLibrary(java.lang.String,java.io.InputStream)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"withGlobalLibrary(String, Path)","u":"withGlobalLibrary(java.lang.String,java.nio.file.Path)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"withGlobalLibrary(String, URI)","u":"withGlobalLibrary(java.lang.String,java.net.URI)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"withGlobalScripts()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withGPU(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withIgnoreErrors(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"withIgnoreMissingAnnotations(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withIgnoring200Error(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withIgnoringHTTP200Error(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withImageFetching()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withImageFetching(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withInputFileExtension(String)","u":"withInputFileExtension(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withInputHandler(IDUUIDocumentHandler)","u":"withInputHandler(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withInputPath(String)","u":"withInputPath(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withInputPaths(List)","u":"withInputPaths(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withInstantiatedPipeline(Vector)","u":"withInstantiatedPipeline(java.util.Vector)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"withIo(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"withJsonLibrary()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"withLabels(List)","u":"withLabels(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"withLabels(String...)","u":"withLabels(java.lang.String...)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withLanguage(String)","u":"withLanguage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withLanguage(String)","u":"withLanguage(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"withLength(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"withLength(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"withLimitInstructionCount(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withLuaContext(DUUILuaContext)","u":"withLuaContext(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"withMaxAnnotationsPerSegment(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"withMaxCharsPerSegment(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader","l":"withMaxMemorySize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withMinimumDocumentSize(long)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withMonitor(DUUIMonitor)","u":"withMonitor(org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withName(String)","u":"withName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"withName(String)","u":"withName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withName(String)","u":"withName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withName(String)","u":"withName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"withName(String)","u":"withName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"withName(String)","u":"withName(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withOpenConnection(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaSandbox","l":"withOs(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withOutputFileExtension(String)","u":"withOutputFileExtension(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withOutputHandler(IDUUIDocumentHandler)","u":"withOutputHandler(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withOutputPath(String)","u":"withOutputPath(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByDelemiter","l":"withOverlap(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIGerParCorReader","l":"withOverrideMeta()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"IDUUIPipelineComponent","l":"withParameter(String, String)","u":"withParameter(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"withPrintStatistics(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withRandomCount(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withRecursive(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withRegistryAuth(String, String)","u":"withRegistryAuth(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withRegistryAuth(String, String)","u":"withRegistryAuth(java.lang.String,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withRunningAfterDestroy(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withRunningAfterDestroy(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","c":"DUUILuaContext","l":"withSandbox(DUUILuaSandbox)","u":"withSandbox(org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withSavePath(String)","u":"withSavePath(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withSavePath(String)","u":"withSavePath(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withScale(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIKubernetesDriver.Component","l":"withScale(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withScale(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withScale(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIUIMADriver.Component","l":"withScale(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withScale(Integer)","u":"withScale(java.lang.Integer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotationFast","l":"withSegmentationClass(Class)","u":"withSegmentationClass(java.lang.Class)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategyByAnnotation","l":"withSegmentationClass(Class)","u":"withSegmentationClass(java.lang.Class)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationStrategy","l":"withSegmentationRule(IDUUISegmentationRule)","u":"withSegmentationRule(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationRule)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withSegmentationStrategy(Class)","u":"withSegmentationStrategy(java.lang.Class)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withSegmentationStrategy(Class)","u":"withSegmentationStrategy(java.lang.Class)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withSegmentationStrategy(Class)","u":"withSegmentationStrategy(java.lang.Class)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withSegmentationStrategy(DUUISegmentationStrategy)","u":"withSegmentationStrategy(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withSegmentationStrategy(DUUISegmentationStrategy)","u":"withSegmentationStrategy(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withSegmentationStrategy(DUUISegmentationStrategy)","u":"withSegmentationStrategy(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withSegmentationStrategy(DUUISegmentationStrategy)","u":"withSegmentationStrategy(org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withSkipSmallerFiles(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withSkipVerification(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withSortBySize(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","c":"DUUIDocumentReader.Builder","l":"withSortBySize(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withSourceDirectory(String)","u":"withSourceDirectory(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withStorageBackend(IDUUIStorageBackend)","u":"withStorageBackend(org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"withSwarmVisualizer()"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver","l":"withSwarmVisualizer(Integer)","u":"withSwarmVisualizer(java.lang.Integer)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withTargetDirectory(String)","u":"withTargetDirectory(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","c":"AsyncCollectionReader.Builder","l":"withTargetFileExtension(String)","u":"withTargetFileExtension(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver","l":"withTimeout(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withUrl(String)","u":"withUrl(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withUrls(List)","u":"withUrls(java.util.List)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withWebsocket(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withWebsocket(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withWebsocket(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withWebsocket(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIDockerDriver.Component","l":"withWebsocket(boolean, int)","u":"withWebsocket(boolean,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withWebsocket(boolean, int)","u":"withWebsocket(boolean,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIRemoteDriver.Component","l":"withWebsocket(boolean, int)","u":"withWebsocket(boolean,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUISwarmDriver.Component","l":"withWebsocket(boolean, int)","u":"withWebsocket(boolean,int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","c":"DUUISegmentationRuleSentences","l":"withWindowSize(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","c":"DUUIComposer","l":"withWorkers(int)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIMonitor","l":"withWriteInterval(Duration)","u":"withWriteInterval(java.time.Duration)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withWriteToView(String)","u":"withWriteToView(java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","c":"DUUIPipelineComponent","l":"withWriteToView(String, boolean)","u":"withWriteToView(java.lang.String,boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"writeDocument(DUUIDocument, String)","u":"writeDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIGoogleDriveDocumentHandler","l":"writeDocument(DUUIDocument, String)","u":"writeDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUILocalDocumentHandler","l":"writeDocument(DUUIDocument, String)","u":"writeDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"writeDocument(DUUIDocument, String)","u":"writeDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"writeDocument(DUUIDocument, String)","u":"writeDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"writeDocument(DUUIDocument, String)","u":"writeDocument(org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIDropboxDocumentHandler","l":"writeDocuments(List, String)","u":"writeDocuments(java.util.List,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUILocalDocumentHandler","l":"writeDocuments(List, String)","u":"writeDocuments(java.util.List,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUIMinioDocumentHandler","l":"writeDocuments(List, String)","u":"writeDocuments(java.util.List,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"DUUINextcloudDocumentHandler","l":"writeDocuments(List, String)","u":"writeDocuments(java.util.List,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","c":"IDUUIDocumentHandler","l":"writeDocuments(List, String)","u":"writeDocuments(java.util.List,java.lang.String)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","c":"DUUIEvent.Sender","l":"WRITER"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","c":"XmiLoader","l":"XmiLoader(boolean)","u":"%3Cinit%3E(boolean)"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","c":"XMLFormatter","l":"XMLFormatter()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/javadoc/module-search-index.js b/docs/javadoc/module-search-index.js new file mode 100644 index 00000000..0d59754f --- /dev/null +++ b/docs/javadoc/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.DebugLevel.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.DebugLevel.html new file mode 100644 index 00000000..9399678a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.DebugLevel.html @@ -0,0 +1,263 @@ + + + + +DUUIComposer.DebugLevel + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class DUUIComposer.DebugLevel

+
+
java.lang.Object +
java.lang.Enum<DUUIComposer.DebugLevel> +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<DUUIComposer.DebugLevel>, Constable
+
+
+
Enclosing class:
+
DUUIComposer
+
+
+
public static enum DUUIComposer.DebugLevel +extends Enum<DUUIComposer.DebugLevel>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static DUUIComposer.DebugLevel[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static DUUIComposer.DebugLevel valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.PipelinePart.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.PipelinePart.html new file mode 100644 index 00000000..b0f49a0a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.PipelinePart.html @@ -0,0 +1,165 @@ + + + + +DUUIComposer.PipelinePart + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIComposer.PipelinePart

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart
+
+
+
+
Enclosing class:
+
DUUIComposer
+
+
+
public static class DUUIComposer.PipelinePart +extends Object
+
Represents a tool in the pipeline.
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.html new file mode 100644 index 00000000..c969c9b7 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIComposer.html @@ -0,0 +1,1343 @@ + + + + +DUUIComposer + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIComposer

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer
+
+
+
+
public class DUUIComposer +extends Object
+
DUUI composer. +

+ This is the main class used to control and use DUUI.

+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      _cas_poolsize

      +
      public Integer _cas_poolsize
      +
      +
    • +
    • +
      +

      COMPONENT_COMPONENT_UNIQUE_KEY

      +
      public static final String COMPONENT_COMPONENT_UNIQUE_KEY
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      V1_COMPONENT_ENDPOINT_PROCESS

      +
      public static final String V1_COMPONENT_ENDPOINT_PROCESS
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      V1_COMPONENT_ENDPOINT_PROCESS_WEBSOCKET

      +
      public static final String V1_COMPONENT_ENDPOINT_PROCESS_WEBSOCKET
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      V1_COMPONENT_ENDPOINT_TYPESYSTEM

      +
      public static final String V1_COMPONENT_ENDPOINT_TYPESYSTEM
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      V1_COMPONENT_ENDPOINT_COMMUNICATION_LAYER

      +
      public static final String V1_COMPONENT_ENDPOINT_COMMUNICATION_LAYER
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      _clients

      +
      public static List<IDUUIConnectionHandler> _clients
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      withMonitor

      +
      public DUUIComposer withMonitor(DUUIMonitor monitor) + throws UnknownHostException, +InterruptedException
      +
      Attach InfluxDB for monitoring.
      +
      +
      Parameters:
      +
      monitor - DUUI monitor object
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      UnknownHostException
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      withSkipVerification

      +
      public DUUIComposer withSkipVerification(boolean skipVerification)
      +
      Enable or disable DUUI API verification step, by default verification is enabled. +

      + If enabled, DUUI tries to process sample data via every component in the pipeline to check for DUUI API compatibility before processing the actual CAS objects.

      +
      +
      Parameters:
      +
      skipVerification - true for skipping, else false
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      withStorageBackend

      +
      public DUUIComposer withStorageBackend(IDUUIStorageBackend storage)
      +
      Attach a storage backend to collect metrics and errors of a run in a database.
      +
      +
      Parameters:
      +
      storage - Storage backend, e.g. SQLite.
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      withLuaContext

      +
      public DUUIComposer withLuaContext(DUUILuaContext context)
      +
      Set Lua context to use. +

      + This enables the configuration of sandbox features or globally usable libraries for Lua scripts.

      +
      +
      Parameters:
      +
      context - Lua context
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      withCasPoolsize

      +
      public DUUIComposer withCasPoolsize(int poolsize)
      +
      Set CAS poolsize. +

      + This is calculated by default (or if explicitly set to null) based on amount of workers.

      +
      +
      Parameters:
      +
      poolsize - CAS poolsize
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      withWorkers

      +
      public DUUIComposer withWorkers(int workers)
      +
      Set the amount of DUUI worker threads for processing, defaults to 1 if not set.
      +
      +
      Parameters:
      +
      workers - Amount of workers to use.
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      withOpenConnection

      +
      public DUUIComposer withOpenConnection(boolean open)
      +
      +
      Parameters:
      +
      open -
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      addDriver

      +
      public DUUIComposer addDriver(IDUUIDriverInterface driver)
      +
      Register a driver to use with the DUUI composer. +

      + By default, no driver is setup. To use the composer, at least one driver has to be added. Components depending on drivers that have not been added can not be processed.

      +
      +
      Parameters:
      +
      driver - The driver to register.
      +
      Returns:
      +
      this, for method chaining
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      addDriver

      +
      public DUUIComposer addDriver(IDUUIDriverInterface... drivers)
      +
      Register multiple drivers to use with the DUUI controller. +

      + By default, no driver is setup. To use the composer, at least one driver has to be added. Components depending on drivers that have not been added can not be processed.

      +
      +
      Parameters:
      +
      drivers - The drivers to register.
      +
      Returns:
      +
      this, for method chaining
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      add

      +
      public DUUIComposer add(DUUIDockerDriver.Component object) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException
      +
      Adds a Docker component to the pipeline.
      +
      +
      Parameters:
      +
      object - Docker component
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      add

      +
      public DUUIComposer add(DUUIUIMADriver.Component object) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException
      +
      Adds a UIMA component to the pipeline.
      +
      +
      Parameters:
      +
      object - UIMA component
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      add

      +
      public DUUIComposer add(DUUIRemoteDriver.Component object) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException
      +
      Adds a Docker component to the pipeline.
      +
      +
      Parameters:
      +
      object - Docker component
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      add

      +
      public DUUIComposer add(DUUISwarmDriver.Component object) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException
      +
      Adds a Docker Swarm component to the pipeline.
      +
      +
      Parameters:
      +
      object - Docker Swarm component
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      add

      +
      public DUUIComposer add(DUUIPipelineComponent object) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException
      +
      Adds a component to the pipeline.
      +
      +
      Parameters:
      +
      object - component
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      add

      +
      public DUUIComposer add(DUUIPipelineDescription desc) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException
      +
      Adds a component to the pipeline.
      +
      +
      Parameters:
      +
      desc - component
      +
      Returns:
      +
      this, for method chaining
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      resetPipeline

      +
      public DUUIComposer resetPipeline()
      +
      Resets the DUUI pipeline to prepare a new run.
      +
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(DUUIAsynchronousProcessor collectionReader, + String name) + throws Exception
      +
      Run the composer pipeline.
      +
      +
      Parameters:
      +
      collectionReader - CAS reader based on an async processor
      +
      name - Name for this run.
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      runSegmented

      +
      public void runSegmented(DUUICollectionDBReader collectionReader, + String name) + throws Exception
      +
      Run the pipeline. +

      + This runs the pipeline by segmenting all CAS using a database-backed collection reader and segment storage.

      +
      +
      Parameters:
      +
      collectionReader - Collection reader providing segmentation and merge functionality.
      +
      name - Run name.
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(AsyncCollectionReader collectionReader, + String name) + throws Exception
      +
      Runs the DUUI pipeline.
      +
      +
      Parameters:
      +
      collectionReader - CAS collection reader
      +
      name - Run name
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(org.apache.uima.collection.CollectionReaderDescription reader) + throws Exception
      +
      Runs the pipeline.
      +
      +
      Parameters:
      +
      reader - CAS collection reader
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      getPipeline

      +
      public Vector<DUUIPipelineComponent> getPipeline()
      +
      +
    • +
    • +
      +

      run

      +
      public void run(org.apache.uima.collection.CollectionReaderDescription reader, + String name) + throws Exception
      +
      Runs the pipeline.
      +
      +
      Parameters:
      +
      reader - CAS collection reader
      +
      name - Run name
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      instantiate_pipeline

      +
      public org.apache.uima.resource.metadata.TypeSystemDescription instantiate_pipeline() + throws Exception
      +
      Instantiates the DUUI pipeline. +

      + This setups, starts and checks every pipeline component and requests their UIMA typesystem to merge all types needed to process the full pipeline.

      +
      +
      Returns:
      +
      Merged typesystem based on all components
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      printConcurrencyGraph

      +
      public void printConcurrencyGraph() + throws Exception
      +
      Prints the concurrency graph to std output.
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(org.apache.uima.jcas.JCas jc) + throws Exception
      +
      Run the pipeline for a single CAS object.
      +
      +
      Parameters:
      +
      jc - CAS object to process
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(org.apache.uima.jcas.JCas jc, + String name) + throws Exception
      +
      Run the pipeline for a single CAS object.
      +
      +
      Parameters:
      +
      jc - CAS object to process
      +
      name - Run name
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      getWorkerCount

      +
      public int getWorkerCount()
      +
      +
    • +
    • +
      +

      shutdown

      +
      public void shutdown() + throws UnknownHostException
      +
      Shuts down the DUUI controller by signaling every worker and stopping all components.
      +
      +
      Throws:
      +
      UnknownHostException
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(DUUIDocumentReader documentReader, + String identifier) + throws Exception
      +
      Run the pipeline using a DUUIDocumentReader to retrieve the data from a given source.
      +
      +
      Parameters:
      +
      documentReader - The document reader containing the IDUUIDocumentHandler instances.
      +
      identifier - A unique identifier function as the key in the storage backend
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      getInstantiatedPipeline

      +
      public Vector<DUUIComposer.PipelinePart> getInstantiatedPipeline()
      +
      Allow access to the instantiated pipeline to store it for future reusability.
      +
      +
      Returns:
      +
      an instantiated pipeline.
      +
      +
      +
    • +
    • +
      +

      withInstantiatedPipeline

      +
      public DUUIComposer withInstantiatedPipeline(Vector<DUUIComposer.PipelinePart> pipeline)
      +
      Directly sets the instantiated pipeline.
      +
      +
      Parameters:
      +
      pipeline - Instantiated pipeline
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      fromInstantiatedPipeline

      +
      public org.apache.uima.resource.metadata.TypeSystemDescription fromInstantiatedPipeline() + throws org.apache.uima.resource.ResourceInitializationException, +org.apache.commons.compress.compressors.CompressorException, +IOException, +InterruptedException, +SAXException
      +
      Generates merged typesystem of all components from already instantiated pipeline.
      +
      +
      Returns:
      +
      Merged typesystem
      +
      Throws:
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      IOException
      +
      InterruptedException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      getEvents

      +
      public List<DUUIEvent> getEvents()
      +
      +
    • +
    • +
      +

      addEvent

      +
      public void addEvent(DUUIEvent.Sender sender, + String message, + DUUIComposer.DebugLevel debugLevel)
      +
      Add a new Event to the events list of the Composer. A DUUIEvent marks a significant timestamp + during a process.
      +
      +
      Parameters:
      +
      sender - The class or object adding the event.
      +
      message - The message of the event.
      +
      debugLevel - Debug level.
      +
      +
      +
    • +
    • +
      +

      addEvent

      +
      public void addEvent(DUUIEvent.Sender sender, + String message)
      +
      Adds an event to the composer.
      +
      +
      Parameters:
      +
      sender - DUUI module emitting the event
      +
      message - Event message
      +
      +
      +
    • +
    • +
      +

      getDocuments

      +
      public Set<DUUIDocument> getDocuments()
      +
      +
    • +
    • +
      +

      findDocumentByPath

      +
      public DUUIDocument findDocumentByPath(String path)
      +
      Finds a DUUIDocument based on its path.
      +
      +
      Parameters:
      +
      path - Document path
      +
      Returns:
      +
      Document
      +
      +
      +
    • +
    • +
      +

      addDocument

      +
      public DUUIDocument addDocument(DUUIDocument document)
      +
      Add a new DUUIDocument for processing
      +
      +
      Parameters:
      +
      document - The document to add.
      +
      Returns:
      +
      The added document if it is not already present in the set otherwise the existing document.
      +
      +
      +
    • +
    • +
      +

      addDocuments

      +
      public void addDocuments(Collection<DUUIDocument> documents)
      +
      Adds multiple DUUIDocument for processing.
      +
      +
      Parameters:
      +
      documents - List of documents
      +
      +
      +
    • +
    • +
      +

      getDocumentPaths

      +
      public Set<String> getDocumentPaths()
      +
      Collects all DUUIDocument paths
      +
      +
      Returns:
      +
      Set of document paths
      +
      +
      +
    • +
    • +
      +

      getPipelineStatus

      +
      public Map<String,String> getPipelineStatus()
      +
      +
    • +
    • +
      +

      setPipelineStatus

      +
      public void setPipelineStatus(String name, + String status)
      +
      Tracks the current status of Drivers and Components.
      +
      +
      Parameters:
      +
      name - The identifier of the object.
      +
      status - The status the object is in.
      +
      +
      +
    • +
    • +
      +

      getDebugLevel

      +
      public DUUIComposer.DebugLevel getDebugLevel()
      +
      +
    • +
    • +
      +

      getIgnoreErrors

      +
      public boolean getIgnoreErrors()
      +
      +
    • +
    • +
      +

      withIgnoreErrors

      +
      public DUUIComposer withIgnoreErrors(boolean ignoreErrors)
      +
      Enable error ignore.
      +
      +
      Parameters:
      +
      ignoreErrors - true to ignore errors, false by default
      +
      Returns:
      +
      this, for method chaining
      +
      +
      +
    • +
    • +
      +

      isService

      +
      public boolean isService()
      +
      +
    • +
    • +
      +

      asService

      +
      public DUUIComposer asService(boolean service)
      +
      When set to true the pipeline is not shutdown on completion but remains idle until a new request + is made.
      +
      +
      Parameters:
      +
      service - Flag that prevents the shutdown of the pipeline .
      +
      +
      +
    • +
    • +
      +

      interrupt

      +
      public void interrupt(String reason)
      +
      Allow the cancellation of a process by calling interrupt.
      +
      +
      Parameters:
      +
      reason - Optional. Provide a reason for interrupting.
      +
      +
      +
    • +
    • +
      +

      interrupt

      +
      public void interrupt()
      +
      Allow the cancellation of a process by calling interrupt.
      +
      +
    • +
    • +
      +

      resetService

      +
      public void resetService()
      +
      +
    • +
    • +
      +

      isServiceStarted

      +
      public boolean isServiceStarted()
      +
      +
    • +
    • +
      +

      isFinished

      +
      public boolean isFinished()
      +
      +
    • +
    • +
      +

      setFinished

      +
      public void setFinished(boolean isFinished)
      +
      +
    • +
    • +
      +

      getInstantiationDuration

      +
      public long getInstantiationDuration()
      +
      +
    • +
    • +
      +

      setInstantiationDuration

      +
      public void setInstantiationDuration(long instantiationDuration)
      +
      The instantiation duration is the time it takes to initialize all drivers and components. The duration + is measured as soon as the pipeline is operational.
      +
      +
      Parameters:
      +
      instantiationDuration - Duration it takes to make the pipeline operational.
      +
      +
      +
    • +
    • +
      +

      getProgress

      +
      public int getProgress()
      +
      +
    • +
    • +
      +

      incrementProgress

      +
      public void incrementProgress()
      +
      +
    • +
    • +
      +

      withDebugLevel

      +
      public DUUIComposer withDebugLevel(DUUIComposer.DebugLevel debugLevel)
      +
      If debug is enabled Events will be written to standard out
      +
      +
      Parameters:
      +
      debugLevel - The level at which events are written to standard out.
      +
      Returns:
      +
      This Composer
      +
      +
      +
    • +
    • +
      +

      shouldShutdown

      +
      public boolean shouldShutdown()
      +
      +
    • +
    • +
      +

      main

      +
      public static void main(String[] args) + throws Exception
      +
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUICompressionHelper.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUICompressionHelper.html new file mode 100644 index 00000000..9502146d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUICompressionHelper.html @@ -0,0 +1,214 @@ + + + + +DUUICompressionHelper + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUICompressionHelper

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper
+
+
+
+
public class DUUICompressionHelper +extends Object
+
Helper class for compression and decompression of strings.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUICompressionHelper

      +
      public DUUICompressionHelper(String method)
      +
      Constructor using a CompressorStreamFactory and a compression method.
      +
      +
      Parameters:
      +
      method -
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      compress

      +
      public String compress(String input) + throws IOException, +org.apache.commons.compress.compressors.CompressorException
      +
      Compresses a string.
      +
      +
      Parameters:
      +
      input - The string to compress.
      +
      Returns:
      +
      The compressed string as a base64 encoded string.
      +
      Throws:
      +
      IOException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      decompress

      +
      public String decompress(String input) + throws IOException, +org.apache.commons.compress.compressors.CompressorException
      +
      Decompresses a string.
      +
      +
      Parameters:
      +
      input - The compressed string as a base64 encoded string.
      +
      Returns:
      +
      The decompressed string.
      +
      Throws:
      +
      IOException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      +
      +
    • +
    • +
      +

      getCompressionMethod

      +
      public String getCompressionMethod()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIDockerInterface.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIDockerInterface.html new file mode 100644 index 00000000..4568d906 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIDockerInterface.html @@ -0,0 +1,565 @@ + + + + +DUUIDockerInterface + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDockerInterface

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
+
+
public class DUUIDockerInterface +extends Object
+
This is the general docker interface which interacts with the docker daemon.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIDockerInterface

      +
      public DUUIDockerInterface() + throws IOException
      +
      Creates a default object which connects to the local docker daemon, may need admin rights depending on the docker installation + Depending on the Operating System a different connection URI is used to build the DockerClient. On Windows the npipe protocol + is required to establish a connection with the docker daemon.
      +
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      extract_port_mapping

      +
      public int extract_port_mapping(String containerid) + throws InterruptedException
      +
      Extracts port mapping from the container with the given containerid, this is important since docker does auto allocate + ports when not explicitly specifying the port number. This will only work on a DockerWrapper constructed container.
      +
      +
      Parameters:
      +
      containerid - The running containerid to read the port mapping from
      +
      Returns:
      +
      The port it was mapped to.
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      extract_port_mapping

      +
      public int extract_port_mapping(String containerid, + int portMapping) + throws InterruptedException
      +
      Extracts port mapping from the container with the given containerid, this is important since docker does auto allocate + ports when not explicitly specifying the port number. This will only work on a DockerWrapper constructed container.
      +
      +
      Parameters:
      +
      containerid - The running containerid to read the port mapping from
      +
      Returns:
      +
      The port it was mapped to.
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      extract_service_port_mapping

      +
      public int extract_service_port_mapping(String service) + throws InterruptedException
      +
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      inside_container

      +
      public boolean inside_container()
      +
      Returns true if the code is run inside the container and false otherwise.
      +
      +
      Returns:
      +
      true if in container false otherwise
      +
      +
      +
    • +
    • +
      +

      get_ip

      +
      public String get_ip()
      +
      Reads the container gateway bridge ip if inside the container to enable communication between sibling containers or the + localhost ip if one is the host.
      +
      +
      Returns:
      +
      The ip address.
      +
      +
      +
    • +
    • +
      +

      get_logs

      +
      public String get_logs(String containerid) + throws InterruptedException
      +
      Reads the logs from the container to determine if the container has started up without errors
      +
      +
      Parameters:
      +
      containerid - The container id to check the logs from
      +
      Returns:
      +
      The string representation of the read logs
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      stop_container

      +
      public void stop_container(String id)
      +
      Stops the container with the given container id
      +
      +
      Parameters:
      +
      id - The id of the container to stop.
      +
      +
      +
    • +
    • +
      +

      rm_service

      +
      public void rm_service(String id)
      +
      Stops the container with the given container id
      +
      +
      Parameters:
      +
      id - The id of the container to stop.
      +
      +
      +
    • +
    • +
      +

      export_to_new_image

      +
      public void export_to_new_image(String containerid, + String imagename)
      +
      Exports a running container to a new image.
      +
      +
      Parameters:
      +
      containerid - The containerid to commit to a new image
      +
      imagename - The image name in the format "repository!imagename"
      +
      +
      +
    • +
    • +
      +

      getLocalImage

      +
      public com.github.dockerjava.api.model.Image getLocalImage(String imageName)
      +
      +
    • +
    • +
      +

      push_image

      +
      public void push_image(String remoteName, + String localName, + String username, + String password) + throws InterruptedException
      +
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      run_service

      +
      public String run_service(String imagename, + int scale) + throws InterruptedException
      +
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      run_service

      +
      public String run_service(String imagename, + int scale, + List<String> constraints) + throws InterruptedException
      +
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      hasLocalImage

      +
      public boolean hasLocalImage(String imageName)
      +
      +
    • +
    • +
      +

      getDockerClient

      +
      public com.github.dockerjava.api.DockerClient getDockerClient()
      +
      +
    • +
    • +
      +

      build

      +
      public String build(Path builddir, + List<String> buildArgs)
      +
      +
    • +
    • +
      +

      isSwarmManagerNode

      +
      public boolean isSwarmManagerNode()
      +
      +
    • +
    • +
      +

      pullImage

      +
      public String pullImage(String tag) + throws InterruptedException
      +
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      pullImage

      +
      public String pullImage(String tag, + String username, + String password) + throws InterruptedException
      +
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      pullImage

      +
      public String pullImage(String tag, + String username, + String password, + AtomicBoolean shutdown) + throws InterruptedException
      +
      Attempts to pull a docker image using its tag, and credentials if necessary.
      +
      +
      Parameters:
      +
      tag - The unique identifier of the image (uri:version).
      +
      username - Credentials username.
      +
      password - Credentials password.
      +
      shutdown - A flag to signal a pull cancel.
      +
      Returns:
      +
      The image tag.
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      getDigestFromImage

      +
      public String getDigestFromImage(String imagename)
      +
      +
    • +
    • +
      +

      run

      +
      public String run(String imageid, + boolean gpu, + boolean autoremove, + int port, + boolean mapDaemon) + throws InterruptedException
      +
      Builds and runs the container with a specified temporary build directory and some flags.
      +
      +
      Parameters:
      +
      gpu - If the gpu should be used
      +
      autoremove - If the autoremove flag is set for the container
      +
      Returns:
      +
      The docker container id
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    • +
      +

      run

      +
      public String run(String imageid, + boolean gpu, + boolean autoremove, + int portContainer, + int portHost, + boolean mapDaemon) + throws InterruptedException
      +
      Builds and runs the container with a specified temporary build directory and some flags.
      +
      +
      Parameters:
      +
      gpu - If the gpu should be used
      +
      autoremove - If the autoremove flag is set for the container
      +
      Returns:
      +
      The docker container id
      +
      Throws:
      +
      InterruptedException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.html new file mode 100644 index 00000000..feb10b9d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.html @@ -0,0 +1,256 @@ + + + + +DUUIFallbackCommunicationLayer + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIFallbackCommunicationLayer

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
+
+
+
All Implemented Interfaces:
+
IDUUICommunicationLayer
+
+
+
public class DUUIFallbackCommunicationLayer +extends Object +implements IDUUICommunicationLayer
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan.html new file mode 100644 index 00000000..b1bd1ce7 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan.html @@ -0,0 +1,226 @@ + + + + +DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
+
+
+
All Implemented Interfaces:
+
IDUUIExecutionPlan
+
+
+
Enclosing class:
+
DUUILinearExecutionPlanGenerator
+
+
+
public class DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan +extends Object +implements IDUUIExecutionPlan
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUILinearExecutionPlanGenerator.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUILinearExecutionPlanGenerator.html new file mode 100644 index 00000000..2e843d3c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUILinearExecutionPlanGenerator.html @@ -0,0 +1,192 @@ + + + + +DUUILinearExecutionPlanGenerator + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILinearExecutionPlanGenerator

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator
+
+
+
+
All Implemented Interfaces:
+
IDUUIExecutionPlanGenerator
+
+
+
public class DUUILinearExecutionPlanGenerator +extends Object +implements IDUUIExecutionPlanGenerator
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIPipelineAnnotationComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIPipelineAnnotationComponent.html new file mode 100644 index 00000000..77516d7d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIPipelineAnnotationComponent.html @@ -0,0 +1,178 @@ + + + + +DUUIPipelineAnnotationComponent + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIPipelineAnnotationComponent

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineAnnotationComponent
+
+
+
+
public class DUUIPipelineAnnotationComponent +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIPipelineAnnotationComponent

      +
      public DUUIPipelineAnnotationComponent(org.texttechnologylab.duui.ReproducibleAnnotation ann) + throws org.apache.commons.compress.compressors.CompressorException, +URISyntaxException, +IOException
      +
      +
      Throws:
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      URISyntaxException
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getComponent

      +
      public DUUIPipelineComponent getComponent()
      +
      +
    • +
    • +
      +

      getAnnotation

      +
      public org.texttechnologylab.duui.ReproducibleAnnotation getAnnotation()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIPipelineDescription.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIPipelineDescription.html new file mode 100644 index 00000000..07c27d98 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIPipelineDescription.html @@ -0,0 +1,193 @@ + + + + +DUUIPipelineDescription + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIPipelineDescription

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription
+
+
+
+
public class DUUIPipelineDescription +extends Object
+
Description of a pipeline for the DUUI composer that holds all components.
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.html new file mode 100644 index 00000000..66e0add4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.html @@ -0,0 +1,210 @@ + + + + +IDUUICommunicationLayer + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUICommunicationLayer

+
+
+
+
All Known Implementing Classes:
+
DUUIFallbackCommunicationLayer, DUUILuaCommunicationLayer
+
+
+
public interface IDUUICommunicationLayer
+
Interface for communication between the DUUI composer DUUIComposer and the components IDUUIDriverInterface.
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      serialize

      +
      void serialize(org.apache.uima.jcas.JCas jc, + ByteArrayOutputStream out, + Map<String,String> parameters) + throws org.apache.commons.compress.compressors.CompressorException, +IOException, +SAXException
      +
      Serializes a JCas to a byte array output stream by using the LUA script provided by the component.
      +
      +
      Parameters:
      +
      jc - Input JCas.
      +
      out - Output stream, i.e. the input to the component.
      +
      parameters - Parameters for use in the LUA script.
      +
      Throws:
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      IOException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      deserialize

      +
      void deserialize(org.apache.uima.jcas.JCas jc, + ByteArrayInputStream input) + throws IOException, +SAXException
      +
      Deserializes a byte array input stream to a JCas by using the LUA script provided by the component.
      +
      +
      Parameters:
      +
      jc - Output JCas, note that the CAS is not reset before deserialization.
      +
      input - Input stream, i.e. the output of the component.
      +
      Throws:
      +
      IOException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      copy

      + +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      merge

      + +
      +
      Parameters:
      +
      results -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      myLuaTestMerging

      +
      String myLuaTestMerging()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUIExecutionPlan.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUIExecutionPlan.html new file mode 100644 index 00000000..dbaf128f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUIExecutionPlan.html @@ -0,0 +1,158 @@ + + + + +IDUUIExecutionPlan + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIExecutionPlan

+
+
+
+
All Known Implementing Classes:
+
DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
+
+
public interface IDUUIExecutionPlan
+
Interface for execution plans of the DUUI composer pipleine.
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUIExecutionPlanGenerator.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUIExecutionPlanGenerator.html new file mode 100644 index 00000000..cfbf65dc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUIExecutionPlanGenerator.html @@ -0,0 +1,140 @@ + + + + +IDUUIExecutionPlanGenerator + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIExecutionPlanGenerator

+
+
+
+
All Known Implementing Classes:
+
DUUILinearExecutionPlanGenerator
+
+
+
public interface IDUUIExecutionPlanGenerator
+
Interface for generating execution plans IDUUIExecutionPlan.
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    generate(org.apache.uima.jcas.JCas jc)
    +
    +
    Generates an execution plan for a given JCas.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      generate

      +
      IDUUIExecutionPlan generate(org.apache.uima.jcas.JCas jc)
      +
      Generates an execution plan for a given JCas.
      +
      +
      Parameters:
      +
      jc - The JCas to generate the execution plan for.
      +
      Returns:
      +
      The generated execution plan.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.DebugLevel.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.DebugLevel.html new file mode 100644 index 00000000..f4ad91df --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.DebugLevel.html @@ -0,0 +1,146 @@ + + + + +Uses of Enum Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.DebugLevel

+
+
Packages that use DUUIComposer.DebugLevel
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.PipelinePart.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.PipelinePart.html new file mode 100644 index 00000000..b24779dc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.PipelinePart.html @@ -0,0 +1,150 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer.PipelinePart

+
+
Packages that use DUUIComposer.PipelinePart
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.html new file mode 100644 index 00000000..468ae328 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIComposer.html @@ -0,0 +1,351 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer

+
+
Packages that use DUUIComposer
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUICompressionHelper.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUICompressionHelper.html new file mode 100644 index 00000000..fa661e5b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUICompressionHelper.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.DUUICompressionHelper
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIDockerInterface.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIDockerInterface.html new file mode 100644 index 00000000..52f86fb8 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIDockerInterface.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIDockerInterface
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIFallbackCommunicationLayer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIFallbackCommunicationLayer.html new file mode 100644 index 00000000..6f964eff --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIFallbackCommunicationLayer.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIFallbackCommunicationLayer
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan.html new file mode 100644 index 00000000..15f09c1c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUILinearExecutionPlanGenerator.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUILinearExecutionPlanGenerator.html new file mode 100644 index 00000000..64a39cc3 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUILinearExecutionPlanGenerator.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.DUUILinearExecutionPlanGenerator
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIPipelineAnnotationComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIPipelineAnnotationComponent.html new file mode 100644 index 00000000..7e0ceead --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIPipelineAnnotationComponent.html @@ -0,0 +1,97 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineAnnotationComponent + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineAnnotationComponent

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIPipelineDescription.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIPipelineDescription.html new file mode 100644 index 00000000..5bf7c082 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/DUUIPipelineDescription.html @@ -0,0 +1,95 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIPipelineDescription

+
+
Packages that use DUUIPipelineDescription
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUICommunicationLayer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUICommunicationLayer.html new file mode 100644 index 00000000..63bbab4f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUICommunicationLayer.html @@ -0,0 +1,189 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer

+
+
Packages that use IDUUICommunicationLayer
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUIExecutionPlan.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUIExecutionPlan.html new file mode 100644 index 00000000..907ca41d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUIExecutionPlan.html @@ -0,0 +1,116 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlan + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlan

+
+
Packages that use IDUUIExecutionPlan
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUIExecutionPlanGenerator.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUIExecutionPlanGenerator.html new file mode 100644 index 00000000..81373f86 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/class-use/IDUUIExecutionPlanGenerator.html @@ -0,0 +1,84 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlanGenerator + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUIExecutionPlanGenerator

+
+
Packages that use IDUUIExecutionPlanGenerator
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/DUUISegmentedWorker.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/DUUISegmentedWorker.html new file mode 100644 index 00000000..89ef81b1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/DUUISegmentedWorker.html @@ -0,0 +1,183 @@ + + + + +DUUISegmentedWorker + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentedWorker

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.composer.DUUISegmentedWorker
+
+
+
+
All Implemented Interfaces:
+
Runnable
+
+
+
public class DUUISegmentedWorker +extends Object +implements Runnable
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/class-use/DUUISegmentedWorker.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/class-use/DUUISegmentedWorker.html new file mode 100644 index 00000000..faaf4779 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/class-use/DUUISegmentedWorker.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.composer.DUUISegmentedWorker + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.composer.DUUISegmentedWorker

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.composer.DUUISegmentedWorker
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-summary.html new file mode 100644 index 00000000..cefd2fa0 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-summary.html @@ -0,0 +1,95 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.composer + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.composer

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.composer
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-tree.html new file mode 100644 index 00000000..9621d438 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.composer Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.composer

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-use.html new file mode 100644 index 00000000..501cbe0d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/composer/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.composer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.composer

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.composer
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/DUUIWebsocketAlt.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/DUUIWebsocketAlt.html new file mode 100644 index 00000000..8bc833f5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/DUUIWebsocketAlt.html @@ -0,0 +1,216 @@ + + + + +DUUIWebsocketAlt + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt
+
+
+
+
All Implemented Interfaces:
+
IDUUIConnectionHandler
+
+
+
@Deprecated +public class DUUIWebsocketAlt +extends Object +implements IDUUIConnectionHandler
+
Deprecated.
+
+
Author:
+
Dawit Terefe, Givara Ebo + + Interface between DUUIComposer and WebsocketClient.
+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    +
    DUUIWebsocketAlt(String uri, + int elements)
    +
    +
    Deprecated.
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    + +
    +
    Deprecated.
    +
    Closes connection to websocket.
    +
    + +
    send(byte[] jc)
    +
    +
    Deprecated.
    +
    Sends serialized JCAS Object and returns result of analysis.
    +
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/IDUUIConnectionHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/IDUUIConnectionHandler.html new file mode 100644 index 00000000..64005f25 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/IDUUIConnectionHandler.html @@ -0,0 +1,152 @@ + + + + +IDUUIConnectionHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIConnectionHandler

+
+
+
+
All Known Implementing Classes:
+
DUUIWebsocketAlt
+
+
+
@Deprecated +public interface IDUUIConnectionHandler
+
Deprecated.
+
Interface for socket connections
+
+
Author:
+
Dawit Terefe, Givara Ebo
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    + +
    +
    Deprecated.
    + +
    send(byte[] jc)
    +
    +
    Deprecated.
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/WebsocketClient.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/WebsocketClient.html new file mode 100644 index 00000000..b6319252 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/WebsocketClient.html @@ -0,0 +1,272 @@ + + + + +WebsocketClient + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.java_websocket.WebSocketAdapter +
org.java_websocket.AbstractWebSocket +
org.java_websocket.client.WebSocketClient +
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
+
+
+
+
+
+
All Implemented Interfaces:
+
Runnable, org.java_websocket.WebSocket, org.java_websocket.WebSocketListener
+
+
+
public class WebsocketClient +extends org.java_websocket.client.WebSocketClient
+
Interface for WebSocket connections
+
+
Author:
+
David Terefe
+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    +
    WebsocketClient(URI serverUri)
    +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    boolean
    + +
     
    + + +
     
    +
    void
    +
    onClose(int i, + String s, + boolean b)
    +
     
    +
    void
    + +
     
    +
    void
    + +
     
    +
    void
    + +
     
    +
    void
    +
    onOpen(org.java_websocket.handshake.ServerHandshake serverHandshake)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.java_websocket.client.WebSocketClient

    +addHeader, clearHeaders, close, close, close, closeBlocking, closeConnection, connect, connectBlocking, connectBlocking, getAttachment, getConnection, getDraft, getLocalSocketAddress, getLocalSocketAddress, getProtocol, getReadyState, getRemoteSocketAddress, getRemoteSocketAddress, getResourceDescriptor, getSocket, getSSLSession, getURI, hasBufferedData, hasSSLSupport, isClosed, isClosing, isFlushAndClose, isOpen, onCloseInitiated, onClosing, onWebsocketClose, onWebsocketCloseInitiated, onWebsocketClosing, onWebsocketError, onWebsocketMessage, onWebsocketMessage, onWebsocketOpen, onWriteDemand, reconnect, reconnectBlocking, removeHeader, run, send, send, send, sendFragmentedFrame, sendFrame, sendFrame, sendPing, setAttachment, setDnsResolver, setProxy, setSocket, setSocketFactory
    +
    +

    Methods inherited from class org.java_websocket.AbstractWebSocket

    +getConnectionLostTimeout, isReuseAddr, isTcpNoDelay, setConnectionLostTimeout, setReuseAddr, setTcpNoDelay
    +
    +

    Methods inherited from class org.java_websocket.WebSocketAdapter

    +onPreparePing, onWebsocketHandshakeReceivedAsClient, onWebsocketHandshakeReceivedAsServer, onWebsocketHandshakeSentAsClient, onWebsocketPing, onWebsocketPong
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      WebsocketClient

      +
      public WebsocketClient(URI serverUri)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      isFinished

      +
      public boolean isFinished()
      +
      +
      Returns:
      +
      true if analysis is finished, false otherwise.
      +
      +
      +
    • +
    • +
      +

      mergeResults

      +
      public static ByteArrayInputStream mergeResults(List<ByteArrayInputStream> results)
      +
      +
      Parameters:
      +
      results - List of results where the ByteArrayInputStreams are JSON files.
      +
      Returns:
      +
      One ByteArrayInputstream containing all the data of the results variable.
      +
      +
      +
    • +
    • +
      +

      onMessage

      +
      public void onMessage(ByteBuffer b)
      +
      +
      Overrides:
      +
      onMessage in class org.java_websocket.client.WebSocketClient
      +
      +
      +
    • +
    • +
      +

      onMessage

      +
      public void onMessage(String s)
      +
      +
      Specified by:
      +
      onMessage in class org.java_websocket.client.WebSocketClient
      +
      +
      +
    • +
    • +
      +

      onOpen

      +
      public void onOpen(org.java_websocket.handshake.ServerHandshake serverHandshake)
      +
      +
      Specified by:
      +
      onOpen in class org.java_websocket.client.WebSocketClient
      +
      +
      +
    • +
    • +
      +

      onClose

      +
      public void onClose(int i, + String s, + boolean b)
      +
      +
      Specified by:
      +
      onClose in class org.java_websocket.client.WebSocketClient
      +
      +
      +
    • +
    • +
      +

      onError

      +
      public void onError(Exception e)
      +
      +
      Specified by:
      +
      onError in class org.java_websocket.client.WebSocketClient
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/DUUIWebsocketAlt.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/DUUIWebsocketAlt.html new file mode 100644 index 00000000..8d0b3614 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/DUUIWebsocketAlt.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/IDUUIConnectionHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/IDUUIConnectionHandler.html new file mode 100644 index 00000000..b6651ab6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/IDUUIConnectionHandler.html @@ -0,0 +1,146 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler

+
+
Packages that use IDUUIConnectionHandler
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/WebsocketClient.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/WebsocketClient.html new file mode 100644 index 00000000..a49b0520 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/class-use/WebsocketClient.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/MongoDBConfig.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/MongoDBConfig.html new file mode 100644 index 00000000..2dc9c9db --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/MongoDBConfig.html @@ -0,0 +1,356 @@ + + + + +MongoDBConfig + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
java.util.Dictionary<K,V> +
java.util.Hashtable<Object,Object> +
java.util.Properties +
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig
+
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Cloneable, Map<Object,Object>
+
+
+
public class MongoDBConfig +extends Properties
+
Class for managing properties for connection to a MongoDB
+
+
Author:
+
Giuseppe Abrami
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MongoDBConfig

      +
      public MongoDBConfig(File pFile) + throws IOException
      +
      Constructor with a File-Object for the Config-File
      +
      +
      Parameters:
      +
      pFile -
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      MongoDBConfig

      +
      public MongoDBConfig(String sPath) + throws IOException
      +
      Constructor with the path of the Config-File
      +
      +
      Parameters:
      +
      sPath -
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getMongoHostname

      +
      public String getMongoHostname()
      +
      Method for the Hostname
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getMongoUsername

      +
      public String getMongoUsername()
      +
      Method for the Username
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getMongoPassword

      +
      public String getMongoPassword()
      +
      Method for the Password
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getMongoPort

      +
      public int getMongoPort()
      +
      Method for the Port
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getConnectionCount

      +
      public int getConnectionCount()
      +
      +
    • +
    • +
      +

      getConnectionTimeOut

      +
      public int getConnectionTimeOut()
      +
      +
    • +
    • +
      +

      getSocketTimeOut

      +
      public int getSocketTimeOut()
      +
      +
    • +
    • +
      +

      getMaxWaitTime

      +
      public int getMaxWaitTime()
      +
      +
    • +
    • +
      +

      getServerSelectionTimeout

      +
      public int getServerSelectionTimeout()
      +
      +
    • +
    • +
      +

      getConnectionSSL

      +
      public boolean getConnectionSSL()
      +
      +
    • +
    • +
      +

      getMongoDatabase

      +
      public String getMongoDatabase()
      +
      Method for the Database name
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getAuthDatabase

      +
      public String getAuthDatabase()
      +
      +
    • +
    • +
      +

      getMongoCollection

      +
      public String getMongoCollection()
      +
      Method for the Collection to connect
      +
      +
      Returns:
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/MongoDBConnectionHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/MongoDBConnectionHandler.html new file mode 100644 index 00000000..bc058906 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/MongoDBConnectionHandler.html @@ -0,0 +1,444 @@ + + + + +MongoDBConnectionHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MongoDBConnectionHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
+
+
public class MongoDBConnectionHandler +extends Object
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
    +
    Constructor
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    long
    +
    count(com.mongodb.BasicDBObject query)
    +
    +
    Method to count the results of a given query
    +
    +
    long
    +
    count(com.mongodb.BasicDBObject query, + String sCollection)
    +
    +
    Method to count the results of a given query
    +
    +
    long
    +
    count(String query, + String sCollection)
    +
    +
    Method to count the results of a given query
    +
    +
    com.mongodb.client.FindIterable
    +
    doQuery(com.mongodb.BasicDBObject query)
    +
    +
    Method to execute a query
    +
    +
    com.mongodb.client.MongoCursor<org.bson.Document>
    +
    doQueryIterator(com.mongodb.BasicDBObject query, + String sCollection)
    +
    +
    Method to execute a query
    +
    +
    com.mongodb.client.MongoCursor<org.bson.Document>
    +
    doQueryIterator(com.mongodb.BasicDBObject query, + String sCollection, + int iSkip, + int iLimit)
    +
    +
    Method to execute a query
    +
    +
    com.mongodb.client.MongoCursor<org.bson.Document>
    +
    doQueryIterator(String query, + String sCollection)
    +
    +
    Method to execute a query
    +
    +
    com.mongodb.client.MongoCursor<org.bson.Document>
    +
    doQueryIterator(String query, + String sCollection, + int iSkip, + int iLimit)
    +
     
    +
    com.mongodb.client.MongoCursor
    +
    doQueryIteratorDistinct(String sField, + Class returnType, + String sCollection)
    +
    +
    Method to execute a query
    +
    +
    com.mongodb.client.MongoCollection
    + +
    +
    Method to return the default Collection
    +
    +
    com.mongodb.client.MongoCollection
    +
    getCollection(String sCollection)
    +
    +
    Method to return the default Collection
    +
    +
    com.mongodb.client.MongoDatabase
    + +
    +
    Method to return the connected Database-Object
    +
    +
    org.bson.Document
    + +
     
    +
    org.bson.Document
    +
    getObject(String sID, + String sCollection)
    +
    +
    Method to return a MongoDocument with a given ID
    +
    + + +
    +
    Method to return all existing collections
    +
    +
    boolean
    +
    updateObject(String sID, + org.bson.Document pDocument)
    +
     
    +
    boolean
    +
    updateObject(String sID, + org.bson.Document pDocument, + String sCollection)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MongoDBConnectionHandler

      +
      public MongoDBConnectionHandler(MongoDBConfig pConfig)
      +
      Constructor
      +
      +
      Parameters:
      +
      pConfig -
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getCollection

      +
      public com.mongodb.client.MongoCollection getCollection()
      +
      Method to return the default Collection
      +
      +
      Returns:
      +
      MongoCollection
      +
      +
      +
    • +
    • +
      +

      getCollection

      +
      public com.mongodb.client.MongoCollection getCollection(String sCollection)
      +
      Method to return the default Collection
      +
      +
      Returns:
      +
      MongoCollection
      +
      +
      +
    • +
    • +
      +

      getDatabase

      +
      public com.mongodb.client.MongoDatabase getDatabase()
      +
      Method to return the connected Database-Object
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getObject

      +
      public org.bson.Document getObject(String sID, + String sCollection)
      +
      Method to return a MongoDocument with a given ID
      +
      +
      Parameters:
      +
      sID -
      +
      Returns:
      +
      Document
      +
      +
      +
    • +
    • +
      +

      updateObject

      +
      public boolean updateObject(String sID, + org.bson.Document pDocument)
      +
      +
    • +
    • +
      +

      updateObject

      +
      public boolean updateObject(String sID, + org.bson.Document pDocument, + String sCollection)
      +
      +
    • +
    • +
      +

      getObject

      +
      public org.bson.Document getObject(String sID)
      +
      +
    • +
    • +
      +

      doQuery

      +
      public com.mongodb.client.FindIterable doQuery(com.mongodb.BasicDBObject query)
      +
      Method to execute a query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      doQueryIterator

      +
      public com.mongodb.client.MongoCursor<org.bson.Document> doQueryIterator(String query, + String sCollection)
      +
      Method to execute a query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      doQueryIterator

      +
      public com.mongodb.client.MongoCursor<org.bson.Document> doQueryIterator(com.mongodb.BasicDBObject query, + String sCollection)
      +
      Method to execute a query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      doQueryIterator

      +
      public com.mongodb.client.MongoCursor<org.bson.Document> doQueryIterator(com.mongodb.BasicDBObject query, + String sCollection, + int iSkip, + int iLimit)
      +
      Method to execute a query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      doQueryIterator

      +
      public com.mongodb.client.MongoCursor<org.bson.Document> doQueryIterator(String query, + String sCollection, + int iSkip, + int iLimit)
      +
      +
    • +
    • +
      +

      doQueryIteratorDistinct

      +
      public com.mongodb.client.MongoCursor doQueryIteratorDistinct(String sField, + Class returnType, + String sCollection)
      +
      Method to execute a query
      +
      +
      Parameters:
      +
      sField -
      +
      sCollection -
      +
      returnType -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      count

      +
      public long count(com.mongodb.BasicDBObject query)
      +
      Method to count the results of a given query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      count

      +
      public long count(com.mongodb.BasicDBObject query, + String sCollection)
      +
      Method to count the results of a given query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      count

      +
      public long count(String query, + String sCollection)
      +
      Method to count the results of a given query
      +
      +
      Parameters:
      +
      query -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      listCollections

      +
      public Set<String> listCollections()
      +
      Method to return all existing collections
      +
      +
      Returns:
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/class-use/MongoDBConfig.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/class-use/MongoDBConfig.html new file mode 100644 index 00000000..c340046a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/class-use/MongoDBConfig.html @@ -0,0 +1,121 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConfig

+
+
Packages that use MongoDBConfig
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/class-use/MongoDBConnectionHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/class-use/MongoDBConnectionHandler.html new file mode 100644 index 00000000..4208c999 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/class-use/MongoDBConnectionHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb.MongoDBConnectionHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-summary.html new file mode 100644 index 00000000..0efa6ecd --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-summary.html @@ -0,0 +1,99 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-tree.html new file mode 100644 index 00000000..5b4ec30c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-tree.html @@ -0,0 +1,86 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-use.html new file mode 100644 index 00000000..5b8b471c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/mongodb/package-use.html @@ -0,0 +1,98 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-summary.html new file mode 100644 index 00000000..33cb9265 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-summary.html @@ -0,0 +1,109 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.connection + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.connection

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.connection
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-tree.html new file mode 100644 index 00000000..8960c830 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-tree.html @@ -0,0 +1,92 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.connection Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.connection

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.connection.DUUIWebsocketAlt (implements org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler)
    • +
    • org.java_websocket.WebSocketAdapter (implements org.java_websocket.WebSocketListener) +
        +
      • org.java_websocket.AbstractWebSocket +
          +
        • org.java_websocket.client.WebSocketClient (implements java.lang.Runnable, org.java_websocket.WebSocket) +
            +
          • org.texttechnologylab.DockerUnifiedUIMAInterface.connection.WebsocketClient
          • +
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
+

Interface Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-use.html new file mode 100644 index 00000000..b0884a83 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/connection/package-use.html @@ -0,0 +1,113 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.connection + + + + + + + + + + + + + + + + + + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIDocument.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIDocument.html new file mode 100644 index 00000000..8579b946 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIDocument.html @@ -0,0 +1,571 @@ + + + + +DUUIDocument + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument
+
+
+
+
public class DUUIDocument +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIDocument

      +
      public DUUIDocument(String name, + String path, + long size)
      +
      +
    • +
    • +
      +

      DUUIDocument

      +
      public DUUIDocument(String name, + String path)
      +
      +
    • +
    • +
      +

      DUUIDocument

      +
      public DUUIDocument(String name, + String path, + byte[] bytes)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      equals

      +
      public boolean equals(Object o)
      +
      +
      Overrides:
      +
      equals in class Object
      +
      +
      +
    • +
    • +
      +

      getName

      +
      public String getName()
      +
      +
    • +
    • +
      +

      setName

      +
      public void setName(String name)
      +
      +
    • +
    • +
      +

      getFileExtension

      +
      public String getFileExtension()
      +
      Retrieve the documents file extension.
      +
      +
      Returns:
      +
      The file extension including the dot character. E.G. '.txt'.
      +
      +
      +
    • +
    • +
      +

      getPath

      +
      public String getPath()
      +
      +
    • +
    • +
      +

      setPath

      +
      public void setPath(String path)
      +
      +
    • +
    • +
      +

      getSize

      +
      public long getSize()
      +
      +
    • +
    • +
      +

      setSize

      +
      public void setSize(long size)
      +
      +
    • +
    • +
      +

      getBytes

      +
      public byte[] getBytes()
      +
      +
    • +
    • +
      +

      setBytes

      +
      public void setBytes(byte[] bytes)
      +
      +
    • +
    • +
      +

      toInputStream

      +
      public ByteArrayInputStream toInputStream()
      +
      Convert the bytes into a ByteArrayInputStream for processing.
      +
      +
      Returns:
      +
      A new ByteArrayInputStream containing the content of the document.
      +
      +
      +
    • +
    • +
      +

      getText

      +
      public String getText()
      +
      Convert the bytes into a String.
      +
      +
      Returns:
      +
      A new String containing the content of the document.
      +
      +
      +
    • +
    • +
      +

      incrementProgress

      +
      public void incrementProgress()
      +
      Increment the document progress by one.
      +
      +
    • +
    • +
      +

      getProgess

      +
      public AtomicInteger getProgess()
      +
      +
    • +
    • +
      +

      getStatus

      +
      public String getStatus()
      +
      +
    • +
    • +
      +

      setStatus

      +
      public void setStatus(String status)
      +
      +
    • +
    • +
      +

      getError

      +
      public String getError()
      +
      +
    • +
    • +
      +

      setError

      +
      public void setError(String error)
      +
      +
    • +
    • +
      +

      isFinished

      +
      public boolean isFinished()
      +
      +
    • +
    • +
      +

      setFinished

      +
      public void setFinished(boolean finished)
      +
      +
    • +
    • +
      +

      getDurationDecode

      +
      public long getDurationDecode()
      +
      +
    • +
    • +
      +

      setDurationDecode

      +
      public void setDurationDecode(long durationDecode)
      +
      +
    • +
    • +
      +

      getDurationDeserialize

      +
      public long getDurationDeserialize()
      +
      +
    • +
    • +
      +

      setDurationDeserialize

      +
      public void setDurationDeserialize(long durationDeserialize)
      +
      +
    • +
    • +
      +

      getDurationWait

      +
      public long getDurationWait()
      +
      +
    • +
    • +
      +

      setDurationWait

      +
      public void setDurationWait(long durationWait)
      +
      +
    • +
    • +
      +

      getDurationProcess

      +
      public long getDurationProcess()
      +
      +
    • +
    • +
      +

      setDurationProcess

      +
      public void setDurationProcess(long durationProcess)
      +
      +
    • +
    • +
      +

      getStartedAt

      +
      public long getStartedAt()
      +
      +
    • +
    • +
      +

      setStartedAt

      +
      public void setStartedAt()
      +
      Utility method to set the startedAt timestamp to the current time.
      +
      +
    • +
    • +
      +

      setStartedAt

      +
      public void setStartedAt(long startedAt)
      +
      +
    • +
    • +
      +

      getFinishedAt

      +
      public long getFinishedAt()
      +
      +
    • +
    • +
      +

      setFinishedAt

      +
      public void setFinishedAt()
      +
      Utility method to set the finishedAt timestamp to the current time.
      +
      +
    • +
    • +
      +

      setFinishedAt

      +
      public void setFinishedAt(long finishedAt)
      +
      +
    • +
    • +
      +

      countAnnotations

      +
      public void countAnnotations(org.apache.uima.jcas.JCas cas)
      +
      +
    • +
    • +
      +

      getAnnotations

      +
      public Map<String,Integer> getAnnotations()
      +
      +
    • +
    • +
      +

      getUploadProgress

      +
      public long getUploadProgress()
      +
      +
    • +
    • +
      +

      setUploadProgress

      +
      public void setUploadProgress(long uploadProgress)
      +
      +
    • +
    • +
      +

      getDownloadProgress

      +
      public long getDownloadProgress()
      +
      +
    • +
    • +
      +

      setDownloadProgress

      +
      public void setDownloadProgress(long downloadProgress)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIDropboxDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIDropboxDocumentHandler.html new file mode 100644 index 00000000..141aeca1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIDropboxDocumentHandler.html @@ -0,0 +1,380 @@ + + + + +DUUIDropboxDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDropboxDocumentHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
+
+
+
All Implemented Interfaces:
+
IDUUIDocumentHandler, IDUUIFolderPickerApi
+
+
+
public class DUUIDropboxDocumentHandler +extends Object +implements IDUUIDocumentHandler, IDUUIFolderPickerApi
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIDropboxDocumentHandler

      +
      public DUUIDropboxDocumentHandler(com.dropbox.core.DbxRequestConfig config, + com.dropbox.core.oauth.DbxCredential credentials) + throws com.dropbox.core.DbxException
      +
      Create a new DropboxDataReader
      +
      +
      Parameters:
      +
      config - A configuration object that contains the App Name.
      +
      credentials - A credentials object that contains the access token, refresh token, app key and app secret.
      +
      Throws:
      +
      com.dropbox.core.DbxException
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getWriteMode

      +
      public com.dropbox.core.v2.files.WriteMode getWriteMode()
      +
      Gets the current writemode.
      +
      +
      Returns:
      +
      The current writemode (ADD or OVERWRITE)
      +
      +
      +
    • +
    • +
      +

      setWriteMode

      +
      public void setWriteMode(com.dropbox.core.v2.files.WriteMode writeMode)
      +
      Sets the current writemode. If ADD is set, conflicting write operations throw an Exception.
      +
      +
    • +
    • +
      +

      isDebug

      +
      public boolean isDebug()
      +
      If debug is set to true, print upload and download progress to standard output.
      +
      +
      Returns:
      +
      Current debug flag.
      +
      +
      +
    • +
    • +
      +

      setDebug

      +
      public void setDebug(boolean debug)
      +
      +
    • +
    • +
      +

      writeDocument

      +
      public void writeDocument(DUUIDocument document, + String path) + throws IOException
      +
      Description copied from interface: IDUUIDocumentHandler
      +
      Write the document to the specified path.
      +
      +
      Specified by:
      +
      writeDocument in interface IDUUIDocumentHandler
      +
      Parameters:
      +
      document - The document to be written.
      +
      path - The full path to the destination where the document should be written.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      writeDocuments

      +
      public void writeDocuments(List<DUUIDocument> documents, + String path) + throws IOException
      +
      Description copied from interface: IDUUIDocumentHandler
      +
      Write a Collection of documents to the specified path.
      +
      +
      Specified by:
      +
      writeDocuments in interface IDUUIDocumentHandler
      +
      Parameters:
      +
      documents - The documents to be written.
      +
      path - The full path to the destination where the documents should be written.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      readDocument

      +
      public DUUIDocument readDocument(String path) + throws IOException
      +
      Description copied from interface: IDUUIDocumentHandler
      +
      Read the content from the specified path and return a document.
      +
      +
      Specified by:
      +
      readDocument in interface IDUUIDocumentHandler
      +
      Parameters:
      +
      path - The full paths to the document that should be read.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      readDocuments

      +
      public List<DUUIDocument> readDocuments(List<String> paths) + throws IOException
      +
      Description copied from interface: IDUUIDocumentHandler
      +
      Read the content from all given paths and return a List of documents.
      +
      +
      Specified by:
      +
      readDocuments in interface IDUUIDocumentHandler
      +
      Parameters:
      +
      paths - A list of full paths to the documents that should be read.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      listDocuments

      +
      public List<DUUIDocument> listDocuments(String path, + String fileExtension, + boolean recursive) + throws IOException
      +
      Description copied from interface: IDUUIDocumentHandler
      +
      Retrieve a List of documents containing only metadata like name, path and size.
      +
      +
      Specified by:
      +
      listDocuments in interface IDUUIDocumentHandler
      +
      Parameters:
      +
      path - The full path to the folder to start the serach for matching documents.
      +
      fileExtension - Specify a fileExtension to filter the list.
      +
      recursive - Wether the search for files with the given extension should be recursive.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      getFolderStructure

      +
      public IDUUIFolderPickerApi.DUUIFolder getFolderStructure()
      +
      +
      Specified by:
      +
      getFolderStructure in interface IDUUIFolderPickerApi
      +
      +
      +
    • +
    • +
      +

      getFolderStructure

      +
      public IDUUIFolderPickerApi.DUUIFolder getFolderStructure(String path, + String name)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIGoogleDriveDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIGoogleDriveDocumentHandler.html new file mode 100644 index 00000000..70277d03 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIGoogleDriveDocumentHandler.html @@ -0,0 +1,324 @@ + + + + +DUUIGoogleDriveDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIGoogleDriveDocumentHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
+
+
+
All Implemented Interfaces:
+
IDUUIDocumentHandler, IDUUIFolderPickerApi
+
+
+
public class DUUIGoogleDriveDocumentHandler +extends Object +implements IDUUIDocumentHandler, IDUUIFolderPickerApi
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIInputStream.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIInputStream.html new file mode 100644 index 00000000..d30a1de4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIInputStream.html @@ -0,0 +1,222 @@ + + + + +DUUIInputStream + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream
+
+
+
+
@Deprecated +public class DUUIInputStream +extends Object
+
Deprecated.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getName

      +
      public String getName()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getPath

      +
      public String getPath()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getSizeBytes

      +
      public long getSizeBytes()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getContent

      +
      public ByteArrayInputStream getContent()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getBytes

      +
      public byte[] getBytes()
      +
      Deprecated.
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUILocalDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUILocalDocumentHandler.html new file mode 100644 index 00000000..5f12e4ab --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUILocalDocumentHandler.html @@ -0,0 +1,281 @@ + + + + +DUUILocalDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILocalDocumentHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
+
+
+
All Implemented Interfaces:
+
IDUUIDocumentHandler
+
+
+
public class DUUILocalDocumentHandler +extends Object +implements IDUUIDocumentHandler
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUILocalDocumentHandler

      +
      public DUUILocalDocumentHandler()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIMinioDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIMinioDocumentHandler.html new file mode 100644 index 00000000..79c2f504 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIMinioDocumentHandler.html @@ -0,0 +1,303 @@ + + + + +DUUIMinioDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIMinioDocumentHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
+
+
+
All Implemented Interfaces:
+
IDUUIDocumentHandler
+
+
+
public class DUUIMinioDocumentHandler +extends Object +implements IDUUIDocumentHandler
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIMinioDocumentHandler

      +
      public DUUIMinioDocumentHandler(String endpoint, + String accessKey, + String secretKey)
      +
      +
    • +
    • +
      +

      DUUIMinioDocumentHandler

      +
      public DUUIMinioDocumentHandler(String endpoint, + io.minio.credentials.Provider credentialsProvider)
      +
      +
    • +
    • +
      +

      DUUIMinioDocumentHandler

      +
      public DUUIMinioDocumentHandler(io.minio.credentials.Provider credentialsProvider)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIMongoDBDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIMongoDBDocumentHandler.html new file mode 100644 index 00000000..3a9ee59a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUIMongoDBDocumentHandler.html @@ -0,0 +1,129 @@ + + + + +DUUIMongoDBDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIMongoDBDocumentHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMongoDBDocumentHandler
+
+
+
+
public class DUUIMongoDBDocumentHandler +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIMongoDBDocumentHandler

      +
      public DUUIMongoDBDocumentHandler()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUINextcloudDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUINextcloudDocumentHandler.html new file mode 100644 index 00000000..0b2deef3 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/DUUINextcloudDocumentHandler.html @@ -0,0 +1,321 @@ + + + + +DUUINextcloudDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUINextcloudDocumentHandler

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
+
+
+
All Implemented Interfaces:
+
IDUUIDocumentHandler, IDUUIFolderPickerApi
+
+
+
public class DUUINextcloudDocumentHandler +extends Object +implements IDUUIDocumentHandler, IDUUIFolderPickerApi
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUINextcloudDocumentHandler

      +
      public DUUINextcloudDocumentHandler(String serverName, + String loginName, + String password)
      +
      Create a new NextCloudDocumentHandler
      +
      +
      Parameters:
      +
      serverName - A URL containing the server address. (e.g.: "https://nextcloud.texttechnologylab.org/")
      +
      loginName - The username used to log in to a NextCloud account.
      +
      password - The password for the user.
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIDocumentHandler.html new file mode 100644 index 00000000..2d62db1e --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIDocumentHandler.html @@ -0,0 +1,268 @@ + + + + +IDUUIDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIDocumentHandler

+
+
+
+
All Known Implementing Classes:
+
DUUIDropboxDocumentHandler, DUUIGoogleDriveDocumentHandler, DUUILocalDocumentHandler, DUUIMinioDocumentHandler, DUUINextcloudDocumentHandler
+
+
+
public interface IDUUIDocumentHandler
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      writeDocument

      +
      void writeDocument(DUUIDocument document, + String path) + throws IOException
      +
      Write the document to the specified path.
      +
      +
      Parameters:
      +
      document - The document to be written.
      +
      path - The full path to the destination where the document should be written.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      writeDocuments

      +
      default void writeDocuments(List<DUUIDocument> documents, + String path) + throws IOException
      +
      Write a Collection of documents to the specified path.
      +
      +
      Parameters:
      +
      documents - The documents to be written.
      +
      path - The full path to the destination where the documents should be written.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      readDocument

      +
      DUUIDocument readDocument(String path) + throws IOException
      +
      Read the content from the specified path and return a document.
      +
      +
      Parameters:
      +
      path - The full paths to the document that should be read.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      readDocuments

      +
      default List<DUUIDocument> readDocuments(List<String> paths) + throws IOException
      +
      Read the content from all given paths and return a List of documents.
      +
      +
      Parameters:
      +
      paths - A list of full paths to the documents that should be read.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      listDocuments

      +
      default List<DUUIDocument> listDocuments(String path, + String fileExtension) + throws IOException
      +
      Retrieve a List of documents containing only metadata like name, path and size.
      +
      +
      Parameters:
      +
      path - The full path to the folder to serach for matching documents.
      +
      fileExtension - Specify a fileExtension to filter the list.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      listDocuments

      +
      List<DUUIDocument> listDocuments(String path, + String fileExtension, + boolean recursive) + throws IOException
      +
      Retrieve a List of documents containing only metadata like name, path and size.
      +
      +
      Parameters:
      +
      path - The full path to the folder to start the serach for matching documents.
      +
      fileExtension - Specify a fileExtension to filter the list.
      +
      recursive - Wether the search for files with the given extension should be recursive.
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    • +
      +

      listDocuments

      +
      default List<DUUIDocument> listDocuments(List<String> paths, + String fileExtension, + boolean recursive) + throws IOException
      +
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIFolderPickerApi.DUUIFolder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIFolderPickerApi.DUUIFolder.html new file mode 100644 index 00000000..82de0ddf --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIFolderPickerApi.DUUIFolder.html @@ -0,0 +1,175 @@ + + + + +IDUUIFolderPickerApi.DUUIFolder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class IDUUIFolderPickerApi.DUUIFolder

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder
+
+
+
+
Enclosing interface:
+
IDUUIFolderPickerApi
+
+
+
public static class IDUUIFolderPickerApi.DUUIFolder +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIFolderPickerApi.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIFolderPickerApi.html new file mode 100644 index 00000000..4f61ce34 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/IDUUIFolderPickerApi.html @@ -0,0 +1,145 @@ + + + + +IDUUIFolderPickerApi + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIFolderPickerApi

+
+
+
+
All Known Implementing Classes:
+
DUUIDropboxDocumentHandler, DUUIGoogleDriveDocumentHandler, DUUINextcloudDocumentHandler
+
+
+
public interface IDUUIFolderPickerApi
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIDocument.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIDocument.html new file mode 100644 index 00000000..710f061d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIDocument.html @@ -0,0 +1,343 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDocument

+
+
Packages that use DUUIDocument
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIDropboxDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIDropboxDocumentHandler.html new file mode 100644 index 00000000..e31913db --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIDropboxDocumentHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIDropboxDocumentHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIGoogleDriveDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIGoogleDriveDocumentHandler.html new file mode 100644 index 00000000..6aeda594 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIGoogleDriveDocumentHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIGoogleDriveDocumentHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIInputStream.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIInputStream.html new file mode 100644 index 00000000..4b77fd15 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIInputStream.html @@ -0,0 +1,86 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIInputStream

+
+
Packages that use DUUIInputStream
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUILocalDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUILocalDocumentHandler.html new file mode 100644 index 00000000..ef416cd7 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUILocalDocumentHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUILocalDocumentHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIMinioDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIMinioDocumentHandler.html new file mode 100644 index 00000000..0f66b3ea --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIMinioDocumentHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMinioDocumentHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIMongoDBDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIMongoDBDocumentHandler.html new file mode 100644 index 00000000..15818d9f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUIMongoDBDocumentHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMongoDBDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMongoDBDocumentHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUIMongoDBDocumentHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUINextcloudDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUINextcloudDocumentHandler.html new file mode 100644 index 00000000..dd004fa9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/DUUINextcloudDocumentHandler.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.DUUINextcloudDocumentHandler
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIDocumentHandler.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIDocumentHandler.html new file mode 100644 index 00000000..46fd45ee --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIDocumentHandler.html @@ -0,0 +1,154 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIDocumentHandler

+
+
Packages that use IDUUIDocumentHandler
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIFolderPickerApi.DUUIFolder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIFolderPickerApi.DUUIFolder.html new file mode 100644 index 00000000..fffffa59 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIFolderPickerApi.DUUIFolder.html @@ -0,0 +1,112 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi.DUUIFolder

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIFolderPickerApi.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIFolderPickerApi.html new file mode 100644 index 00000000..89dddc97 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/class-use/IDUUIFolderPickerApi.html @@ -0,0 +1,90 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler.IDUUIFolderPickerApi

+
+
Packages that use IDUUIFolderPickerApi
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-summary.html new file mode 100644 index 00000000..04f099a4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-summary.html @@ -0,0 +1,121 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-tree.html new file mode 100644 index 00000000..00572654 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-tree.html @@ -0,0 +1,88 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-use.html new file mode 100644 index 00000000..7d1c3ea4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/document_handler/package-use.html @@ -0,0 +1,134 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler + + + + + + + + + + + + + + + +
+ + +
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.Component.html new file mode 100644 index 00000000..6550ca66 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.Component.html @@ -0,0 +1,321 @@ + + + + +DUUIDockerDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDockerDriver.Component

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component
+
+
+
+
Enclosing class:
+
DUUIDockerDriver
+
+
+
public static class DUUIDockerDriver.Component +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.ComponentInstance.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.ComponentInstance.html new file mode 100644 index 00000000..291825b8 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.ComponentInstance.html @@ -0,0 +1,238 @@ + + + + +DUUIDockerDriver.ComponentInstance + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDockerDriver.ComponentInstance

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
+
+
+
All Implemented Interfaces:
+
IDUUIUrlAccessible
+
+
+
Enclosing class:
+
DUUIDockerDriver
+
+
+
public static class DUUIDockerDriver.ComponentInstance +extends Object +implements IDUUIUrlAccessible
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.html new file mode 100644 index 00000000..f0aebfef --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIDockerDriver.html @@ -0,0 +1,449 @@ + + + + +DUUIDockerDriver + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDockerDriver

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver
+
+
+
+
All Implemented Interfaces:
+
IDUUIDriverInterface
+
+
+
public class DUUIDockerDriver +extends Object +implements IDUUIDriverInterface
+
Driver for the use of Docker
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.Component.html new file mode 100644 index 00000000..68b26ef1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.Component.html @@ -0,0 +1,248 @@ + + + + +DUUIKubernetesDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIKubernetesDriver.Component

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component
+
+
+
+
Enclosing class:
+
DUUIKubernetesDriver
+
+
+
public static class DUUIKubernetesDriver.Component +extends Object
+
Instance of this class is input to composer.add-method and is added to the _Pipeline-attribute of the composer.
+
+
Author:
+
Markos Genios
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.ComponentInstance.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.ComponentInstance.html new file mode 100644 index 00000000..6ac97a20 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.ComponentInstance.html @@ -0,0 +1,258 @@ + + + + +DUUIKubernetesDriver.ComponentInstance + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIKubernetesDriver.ComponentInstance

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
+
+
+
All Implemented Interfaces:
+
IDUUIUrlAccessible
+
+
+
Enclosing class:
+
DUUIKubernetesDriver
+
+
+
public static class DUUIKubernetesDriver.ComponentInstance +extends Object +implements IDUUIUrlAccessible
+
Class to represent a kubernetes pod: An Instance to process an entire document.
+
+
Author:
+
Markos Genios
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.html new file mode 100644 index 00000000..ea243531 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIKubernetesDriver.html @@ -0,0 +1,501 @@ + + + + +DUUIKubernetesDriver + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIKubernetesDriver

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
+
+
All Implemented Interfaces:
+
IDUUIDriverInterface
+
+
+
public class DUUIKubernetesDriver +extends Object +implements IDUUIDriverInterface
+
Driver for the running of components in Kubernetes
+
+
Author:
+
Markos Genios, Filip Fitzermann
+
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    Nested Classes
    +
    +
    Modifier and Type
    +
    Class
    +
    Description
    +
    static class 
    + +
    +
    Instance of this class is input to composer.add-method and is added to the _Pipeline-attribute of the composer.
    +
    +
    static class 
    + +
    +
    Class to represent a kubernetes pod: An Instance to process an entire document.
    +
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
    +
    Constructor.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    boolean
    + +
    +
    Method for checking whether the selected component can be used via the driver.
    +
    +
    static void
    +
    createDeployment(String name, + String image, + int replicas, + List<String> labels)
    +
    +
    Creates Deployment for the kubernetes cluster.
    +
    +
    static io.fabric8.kubernetes.api.model.Service
    + +
    +
    Creates Service for kubernetes cluster which is matched by selector labels to the previously created deployment.
    +
    +
    static void
    + +
    +
    Deletes the Deployment from the kubernetes cluster.
    +
    +
    static void
    + +
    +
    Deletes the service from the kubernetes cluster.
    +
    +
    boolean
    + +
    +
    Deletes both the deployment and the service from the kubernetes cluster, if they exist.
    +
    +
    org.apache.uima.resource.metadata.TypeSystemDescription
    + +
    +
    Returns the TypeSystem used for the respective component.
    +
    +
    static List<io.fabric8.kubernetes.api.model.NodeSelectorTerm>
    + +
    +
    Creates a list of NodeSelectorTerms from a list of labels.
    +
    + +
    instantiate(DUUIPipelineComponent component, + org.apache.uima.jcas.JCas jc, + boolean skipVerification, + AtomicBoolean shutdown)
    +
    +
    Creates Deployment and Service.
    +
    +
    boolean
    +
    isMasterNode(io.fabric8.kubernetes.client.KubernetesClient kubeClient)
    +
    +
    Checks, whether the used Server is the master-node of kubernetes cluster.
    +
    +
    void
    + +
    +
    Visualisation of the concurrency
    +
    +
    void
    +
    run(String uuid, + org.apache.uima.jcas.JCas aCas, + DUUIPipelineDocumentPerformance perf, + DUUIComposer composer)
    +
    +
    Starting a component.
    +
    +
    void
    + +
    +
    Method for defining the Lua context to be used, which determines the transfer type between Composer and components.
    +
    +
    void
    + +
    +
    Shutting down the driver
    +
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIKubernetesDriver

      +
      public DUUIKubernetesDriver() + throws IOException
      +
      Constructor.
      +
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      setLuaContext

      +
      public void setLuaContext(DUUILuaContext luaContext)
      +
      Description copied from interface: IDUUIDriverInterface
      +
      Method for defining the Lua context to be used, which determines the transfer type between Composer and components.
      +
      +
      Specified by:
      +
      setLuaContext in interface IDUUIDriverInterface
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      canAccept

      +
      public boolean canAccept(DUUIPipelineComponent component) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException
      +
      Description copied from interface: IDUUIDriverInterface
      +
      Method for checking whether the selected component can be used via the driver.
      +
      +
      Specified by:
      +
      canAccept in interface IDUUIDriverInterface
      +
      Returns:
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      createDeployment

      +
      public static void createDeployment(String name, + String image, + int replicas, + List<String> labels)
      +
      Creates Deployment for the kubernetes cluster.
      +
      +
      Parameters:
      +
      name - : Name of the deployment
      +
      image - : Image that the pods are running
      +
      replicas - : number of pods (or more general: threads) to be created
      +
      labels - : Use only gpu-servers with the specified labels.
      +
      +
      +
    • +
    • +
      +

      createService

      +
      public static io.fabric8.kubernetes.api.model.Service createService(String name)
      +
      Creates Service for kubernetes cluster which is matched by selector labels to the previously created deployment.
      +
      +
      Parameters:
      +
      name -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getNodeSelectorTerms

      +
      public static List<io.fabric8.kubernetes.api.model.NodeSelectorTerm> getNodeSelectorTerms(List<String> rawLabels)
      +
      Creates a list of NodeSelectorTerms from a list of labels. If added to a deployment the pods are scheduled onto + any node that has one or multiple of the given labels. + Each label must be given in the format "key=value".
      +
      +
      Parameters:
      +
      rawLabels -
      +
      Returns:
      +
      List<NodeSelectorTerm>
      +
      +
      +
    • +
    • +
      +

      isMasterNode

      +
      public boolean isMasterNode(io.fabric8.kubernetes.client.KubernetesClient kubeClient) + throws SocketException
      +
      Checks, whether the used Server is the master-node of kubernetes cluster. + Note: Function can give false-negative results, therefore is not used in the working code.
      +
      +
      Parameters:
      +
      kubeClient -
      +
      Returns:
      +
      Throws:
      +
      SocketException
      +
      +
      +
    • +
    • +
      +

      instantiate

      +
      public String instantiate(DUUIPipelineComponent component, + org.apache.uima.jcas.JCas jc, + boolean skipVerification, + AtomicBoolean shutdown) + throws Exception
      +
      Creates Deployment and Service. Puts the new component, which includes the Pods with their image to the active components.
      +
      +
      Specified by:
      +
      instantiate in interface IDUUIDriverInterface
      +
      Parameters:
      +
      component -
      +
      jc -
      +
      skipVerification -
      +
      shutdown -
      +
      Returns:
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      deleteDeployment

      +
      public static void deleteDeployment(String name)
      +
      Deletes the Deployment from the kubernetes cluster.
      +
      +
    • +
    • +
      +

      deleteService

      +
      public static void deleteService(String name)
      +
      Deletes the service from the kubernetes cluster.
      +
      +
    • +
    • +
      +

      printConcurrencyGraph

      +
      public void printConcurrencyGraph(String uuid)
      +
      Description copied from interface: IDUUIDriverInterface
      +
      Visualisation of the concurrency
      +
      +
      Specified by:
      +
      printConcurrencyGraph in interface IDUUIDriverInterface
      +
      +
      +
    • +
    • +
      +

      get_typesystem

      +
      public org.apache.uima.resource.metadata.TypeSystemDescription get_typesystem(String uuid) + throws InterruptedException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException, +org.apache.uima.resource.ResourceInitializationException
      +
      Description copied from interface: IDUUIDriverInterface
      +
      Returns the TypeSystem used for the respective component.
      +
      +
      Specified by:
      +
      get_typesystem in interface IDUUIDriverInterface
      +
      Returns:
      +
      Throws:
      +
      InterruptedException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      See Also:
      +
      +
        +
      • TypeSystemDescription
      • +
      +
      +
      +
      +
    • +
    • +
      +

      run

      +
      public void run(String uuid, + org.apache.uima.jcas.JCas aCas, + DUUIPipelineDocumentPerformance perf, + DUUIComposer composer) + throws InterruptedException, +IOException, +SAXException, +org.apache.uima.analysis_engine.AnalysisEngineProcessException, +org.apache.commons.compress.compressors.CompressorException, +org.apache.uima.cas.CASException
      +
      Description copied from interface: IDUUIDriverInterface
      +
      Starting a component.
      +
      +
      Specified by:
      +
      run in interface IDUUIDriverInterface
      +
      Throws:
      +
      InterruptedException
      +
      IOException
      +
      SAXException
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      org.apache.uima.cas.CASException
      +
      +
      +
    • +
    • +
      +

      destroy

      +
      public boolean destroy(String uuid)
      +
      Deletes both the deployment and the service from the kubernetes cluster, if they exist.
      +
      +
      Specified by:
      +
      destroy in interface IDUUIDriverInterface
      +
      Parameters:
      +
      uuid -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      shutdown

      +
      public void shutdown()
      +
      Description copied from interface: IDUUIDriverInterface
      +
      Shutting down the driver
      +
      +
      Specified by:
      +
      shutdown in interface IDUUIDriverInterface
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.html new file mode 100644 index 00000000..dab058c3 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.html @@ -0,0 +1,902 @@ + + + + +DUUIPipelineComponent + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIPipelineComponent

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent
+
+
+
+
public class DUUIPipelineComponent +extends Object
+
Encapsulation of a component for a pipeline.
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponentJoinStrategy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponentJoinStrategy.html new file mode 100644 index 00000000..6196e997 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponentJoinStrategy.html @@ -0,0 +1,227 @@ + + + + +DUUIPipelineComponentJoinStrategy + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class DUUIPipelineComponentJoinStrategy

+
+
java.lang.Object +
java.lang.Enum<DUUIPipelineComponentJoinStrategy> +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<DUUIPipelineComponentJoinStrategy>, Constable
+
+
+
public enum DUUIPipelineComponentJoinStrategy +extends Enum<DUUIPipelineComponentJoinStrategy>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static DUUIPipelineComponentJoinStrategy[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static DUUIPipelineComponentJoinStrategy valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.Component.html new file mode 100644 index 00000000..95cb11cc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.Component.html @@ -0,0 +1,313 @@ + + + + +DUUIRemoteDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIRemoteDriver.Component

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component
+
+
+
+
Enclosing class:
+
DUUIRemoteDriver
+
+
+
public static class DUUIRemoteDriver.Component +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.html new file mode 100644 index 00000000..67344801 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.html @@ -0,0 +1,372 @@ + + + + +DUUIRemoteDriver + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIRemoteDriver

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
+
+
+
All Implemented Interfaces:
+
IDUUIDriverInterface
+
+
+
public class DUUIRemoteDriver +extends Object +implements IDUUIDriverInterface
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.Component.html new file mode 100644 index 00000000..97944a22 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.Component.html @@ -0,0 +1,307 @@ + + + + +DUUISwarmDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISwarmDriver.Component

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component
+
+
+
+
Enclosing class:
+
DUUISwarmDriver
+
+
+
public static class DUUISwarmDriver.Component +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.html new file mode 100644 index 00000000..c68200bc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.html @@ -0,0 +1,406 @@ + + + + +DUUISwarmDriver + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver
+
+
+
+
All Implemented Interfaces:
+
IDUUIDriverInterface
+
+
+
public class DUUISwarmDriver +extends Object +implements IDUUIDriverInterface
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.Component.html new file mode 100644 index 00000000..6d1a0605 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.Component.html @@ -0,0 +1,278 @@ + + + + +DUUIUIMADriver.Component + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIUIMADriver.Component

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component
+
+
+
+
Enclosing class:
+
DUUIUIMADriver
+
+
+
public static class DUUIUIMADriver.Component +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.InstantiatedComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.InstantiatedComponent.html new file mode 100644 index 00000000..148a3777 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.InstantiatedComponent.html @@ -0,0 +1,182 @@ + + + + +DUUIUIMADriver.InstantiatedComponent + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIUIMADriver.InstantiatedComponent

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent
+
+
+
+
Enclosing class:
+
DUUIUIMADriver
+
+
+
public static class DUUIUIMADriver.InstantiatedComponent +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.html new file mode 100644 index 00000000..932f6579 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.html @@ -0,0 +1,393 @@ + + + + +DUUIUIMADriver + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver
+
+
+
+
All Implemented Interfaces:
+
IDUUIDriverInterface
+
+
+
public class DUUIUIMADriver +extends Object +implements IDUUIDriverInterface
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.html new file mode 100644 index 00000000..b04ff2ca --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.html @@ -0,0 +1,318 @@ + + + + +IDUUIDriverInterface + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIDriverInterface

+
+
+
+
All Known Implementing Classes:
+
DUUIDockerDriver, DUUIKubernetesDriver, DUUIRemoteDriver, DUUISwarmDriver, DUUIUIMADriver
+
+
+
public interface IDUUIDriverInterface
+
Interface for all drivers
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      setLuaContext

      +
      void setLuaContext(DUUILuaContext luaContext)
      +
      Method for defining the Lua context to be used, which determines the transfer type between Composer and components.
      +
      +
      Parameters:
      +
      luaContext -
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      canAccept

      +
      boolean canAccept(DUUIPipelineComponent component) + throws org.apache.uima.util.InvalidXMLException, +IOException, +SAXException
      +
      Method for checking whether the selected component can be used via the driver.
      +
      +
      Parameters:
      +
      component -
      +
      Returns:
      +
      Throws:
      +
      org.apache.uima.util.InvalidXMLException
      +
      IOException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      instantiate

      +
      String instantiate(DUUIPipelineComponent component, + org.apache.uima.jcas.JCas jc, + boolean skipVerification, + AtomicBoolean shutdown) + throws Exception
      +
      Initialisation method
      +
      +
      Parameters:
      +
      component -
      +
      jc -
      +
      skipVerification -
      +
      shutdown -
      +
      Returns:
      +
      Throws:
      +
      Exception
      +
      +
      +
    • +
    • +
      +

      printConcurrencyGraph

      +
      void printConcurrencyGraph(String uuid)
      +
      Visualisation of the concurrency
      +
      +
      Parameters:
      +
      uuid -
      +
      +
      +
    • +
    • +
      +

      get_typesystem

      +
      org.apache.uima.resource.metadata.TypeSystemDescription get_typesystem(String uuid) + throws InterruptedException, +IOException, +SAXException, +org.apache.commons.compress.compressors.CompressorException, +org.apache.uima.resource.ResourceInitializationException
      +
      Returns the TypeSystem used for the respective component.
      +
      +
      Parameters:
      +
      uuid -
      +
      Returns:
      +
      Throws:
      +
      InterruptedException
      +
      IOException
      +
      SAXException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      See Also:
      +
      +
        +
      • TypeSystemDescription
      • +
      +
      +
      +
      +
    • +
    • +
      +

      run

      +
      void run(String uuid, + org.apache.uima.jcas.JCas aCas, + DUUIPipelineDocumentPerformance perf, + DUUIComposer composer) + throws InterruptedException, +IOException, +SAXException, +org.apache.uima.analysis_engine.AnalysisEngineProcessException, +org.apache.commons.compress.compressors.CompressorException, +org.apache.uima.cas.CASException
      +
      Starting a component.
      +
      +
      Parameters:
      +
      uuid -
      +
      aCas -
      +
      perf -
      +
      composer -
      +
      Throws:
      +
      InterruptedException
      +
      IOException
      +
      SAXException
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      org.apache.uima.cas.CASException
      +
      +
      +
    • +
    • +
      +

      destroy

      +
      boolean destroy(String uuid)
      +
      Destruction of a component
      +
      +
      Parameters:
      +
      uuid -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      shutdown

      +
      void shutdown()
      +
      Shutting down the driver
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.html new file mode 100644 index 00000000..6812adc5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.html @@ -0,0 +1,283 @@ + + + + +IDUUIInstantiatedPipelineComponent + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIInstantiatedPipelineComponent

+
+
+
+
public interface IDUUIInstantiatedPipelineComponent
+
The interface for the instance of each component that is executed in a pipeline.
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.html new file mode 100644 index 00000000..c74aa333 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.html @@ -0,0 +1,340 @@ + + + + +IDUUIPipelineComponent + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class IDUUIPipelineComponent

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent
+
+
+
+
public class IDUUIPipelineComponent +extends Object
+
Encapsulation of a pipeline component
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      IDUUIPipelineComponent

      +
      public IDUUIPipelineComponent()
      +
      default constructor
      +
      +
    • +
    • +
      +

      IDUUIPipelineComponent

      +
      public IDUUIPipelineComponent(Map<String,Object> options)
      +
      constructor
      +
      +
      Parameters:
      +
      options -
      +
      +
      +
    • +
    • +
      +

      IDUUIPipelineComponent

      +
      public IDUUIPipelineComponent(IDUUIPipelineComponent other)
      +
      Duplication of the options of an existing component
      +
      +
      Parameters:
      +
      other -
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      withParameter

      +
      public IDUUIPipelineComponent withParameter(String key, + String value)
      +
      Adding a key-value pair as a parameter
      +
      +
      Parameters:
      +
      key -
      +
      value -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getParameters

      +
      public Map<String,String> getParameters()
      +
      Return of all set parameters
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      setOption

      +
      public void setOption(String key, + String value)
      +
      Adding a key-value pair as an option
      +
      +
      Parameters:
      +
      key -
      +
      value -
      +
      +
      +
    • +
    • +
      +

      getOption

      +
      public String getOption(String key)
      +
      Get specific value of an option-parameter
      +
      +
      Parameters:
      +
      key -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      hasOption

      +
      public boolean hasOption(String key)
      +
      Check whether a key exists as an option.
      +
      +
      Parameters:
      +
      key -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getOptions

      +
      public Map<String,String> getOptions()
      +
      Return of all configured options
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      withName

      +
      public void withName(String name)
      +
      Set option "name"
      +
      +
      Parameters:
      +
      name -
      +
      +
      +
    • +
    • +
      +

      getName

      +
      public String getName()
      +
      Get option "name"
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      removeOption

      +
      public String removeOption(String key)
      +
      Remove an option by using a key
      +
      +
      Parameters:
      +
      key -
      +
      Returns:
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.html new file mode 100644 index 00000000..1abd931a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.html @@ -0,0 +1,177 @@ + + + + +IDUUIUrlAccessible + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIUrlAccessible

+
+
+
+
All Known Implementing Classes:
+
DUUIDockerDriver.ComponentInstance, DUUIKubernetesDriver.ComponentInstance
+
+
+
public interface IDUUIUrlAccessible
+
Interface for the generation of DUUI-available URLs
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      generateURL

      +
      String generateURL()
      +
      Returns the URL of the DUUI-component.
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getHandler

      + +
      Returns the connection handler for accessing connectors.
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getCommunicationLayer

      +
      IDUUICommunicationLayer getCommunicationLayer()
      +
      Returns the communication layer.
      +
      +
      Returns:
      +
      See Also:
      +
      +
        +
      • Lua
      • +
      +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.Component.html new file mode 100644 index 00000000..d28107a2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.Component.html @@ -0,0 +1,144 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.Component

+
+
Packages that use DUUIDockerDriver.Component
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.ComponentInstance.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.ComponentInstance.html new file mode 100644 index 00000000..5af5bd9a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.ComponentInstance.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver.ComponentInstance
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.html new file mode 100644 index 00000000..489d8459 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIDockerDriver.html @@ -0,0 +1,86 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIDockerDriver

+
+
Packages that use DUUIDockerDriver
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.Component.html new file mode 100644 index 00000000..c73eb233 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.Component.html @@ -0,0 +1,101 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.Component

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.ComponentInstance.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.ComponentInstance.html new file mode 100644 index 00000000..96067132 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.ComponentInstance.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver.ComponentInstance
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.html new file mode 100644 index 00000000..49c561f5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIKubernetesDriver.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIKubernetesDriver
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIPipelineComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIPipelineComponent.html new file mode 100644 index 00000000..2d734467 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIPipelineComponent.html @@ -0,0 +1,323 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponent

+
+
Packages that use DUUIPipelineComponent
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIPipelineComponentJoinStrategy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIPipelineComponentJoinStrategy.html new file mode 100644 index 00000000..9020a293 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIPipelineComponentJoinStrategy.html @@ -0,0 +1,102 @@ + + + + +Uses of Enum Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIPipelineComponentJoinStrategy

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIRemoteDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIRemoteDriver.Component.html new file mode 100644 index 00000000..6b20e33e --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIRemoteDriver.Component.html @@ -0,0 +1,131 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver.Component

+
+
Packages that use DUUIRemoteDriver.Component
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIRemoteDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIRemoteDriver.html new file mode 100644 index 00000000..2082d8a8 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIRemoteDriver.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIRemoteDriver
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUISwarmDriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUISwarmDriver.Component.html new file mode 100644 index 00000000..03c78cf1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUISwarmDriver.Component.html @@ -0,0 +1,142 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver.Component

+
+
Packages that use DUUISwarmDriver.Component
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUISwarmDriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUISwarmDriver.html new file mode 100644 index 00000000..27cbfbd5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUISwarmDriver.html @@ -0,0 +1,87 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUISwarmDriver

+
+
Packages that use DUUISwarmDriver
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.Component.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.Component.html new file mode 100644 index 00000000..328c8456 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.Component.html @@ -0,0 +1,119 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.Component

+
+
Packages that use DUUIUIMADriver.Component
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.InstantiatedComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.InstantiatedComponent.html new file mode 100644 index 00000000..5c5cd868 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.InstantiatedComponent.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver.InstantiatedComponent

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.html new file mode 100644 index 00000000..598c46ed --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/DUUIUIMADriver.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver

+
+
Packages that use DUUIUIMADriver
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIDriverInterface.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIDriverInterface.html new file mode 100644 index 00000000..baa50cb6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIDriverInterface.html @@ -0,0 +1,141 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIDriverInterface

+
+
Packages that use IDUUIDriverInterface
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIInstantiatedPipelineComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIInstantiatedPipelineComponent.html new file mode 100644 index 00000000..32895dbe --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIInstantiatedPipelineComponent.html @@ -0,0 +1,101 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIInstantiatedPipelineComponent

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIPipelineComponent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIPipelineComponent.html new file mode 100644 index 00000000..be512f15 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIPipelineComponent.html @@ -0,0 +1,188 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIPipelineComponent

+
+
Packages that use IDUUIPipelineComponent
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIUrlAccessible.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIUrlAccessible.html new file mode 100644 index 00000000..f4d243ce --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/class-use/IDUUIUrlAccessible.html @@ -0,0 +1,107 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIUrlAccessible + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.driver.IDUUIUrlAccessible

+
+
Packages that use IDUUIUrlAccessible
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-summary.html new file mode 100644 index 00000000..725fe079 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-summary.html @@ -0,0 +1,155 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.driver + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.driver

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.driver
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-tree.html new file mode 100644 index 00000000..6354b85d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-tree.html @@ -0,0 +1,109 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.driver Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.driver

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-use.html new file mode 100644 index 00000000..f815f44e --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/package-use.html @@ -0,0 +1,225 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.driver + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.driver

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.Builder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.Builder.html new file mode 100644 index 00000000..bdce6bd8 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.Builder.html @@ -0,0 +1,272 @@ + + + + +AsyncCollectionReader.Builder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AsyncCollectionReader.Builder

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder
+
+
+
+
Enclosing class:
+
AsyncCollectionReader
+
+
+
public static class AsyncCollectionReader.Builder +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html new file mode 100644 index 00000000..13b08aa9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html @@ -0,0 +1,231 @@ + + + + +AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE

+
+
java.lang.Object +
java.lang.Enum<AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE> +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE>, Constable
+
+
+
Enclosing class:
+
AsyncCollectionReader
+
+
+
public static enum AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE +extends Enum<AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE>
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.html new file mode 100644 index 00000000..d8e767dc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/AsyncCollectionReader.html @@ -0,0 +1,765 @@ + + + + +AsyncCollectionReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AsyncCollectionReader

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader
+
+
+
+
@Deprecated +public class AsyncCollectionReader +extends Object
+
Deprecated.
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + boolean bAddMetadata)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + boolean bAddMetadata, + String language)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + String language)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + boolean bSort)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + boolean bSort, + String sTargetPath)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int iRandom, + boolean bSort, + String savePath)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int sampleSize, + AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE sampleMode, + String savePath, + boolean bAddMetadata, + String language, + int skipSmallerFiles)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int sampleSize, + String savePath, + boolean bAddMetadata, + String language, + int skipSmallerFiles)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int iRandom, + boolean bSort, + String savePath, + boolean bAddMetadata, + String language)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int iRandom, + boolean bSort, + String savePath, + boolean bAddMetadata)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int sampleSize, + AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE sampleMode, + String savePath, + boolean bAddMetadata, + String language)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + IDUUIDocumentHandler dataReader, + int debugCount, + int iRandom, + boolean bSort, + String savePath, + boolean bAddMetadata, + String language, + int skipSmallerFiles, + String targetLocation, + String targetEnding)
      +
      Deprecated.
      +
      Constructor for the AsyncCollectionReader
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int iRandom, + boolean bSort, + String savePath, + boolean bAddMetadata, + String language, + String targetLocation, + String targetEnding)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      AsyncCollectionReader

      +
      public AsyncCollectionReader(String folder, + String ending, + int debugCount, + int iRandom, + boolean bSort, + String savePath, + boolean bAddMetadata, + String language, + int skipSmallerFiles, + String targetLocation, + String targetEnding)
      +
      Deprecated.
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      reset

      +
      public void reset()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      withMaxMemorySize

      +
      public AsyncCollectionReader withMaxMemorySize(long memorySize)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getMaxMemory

      +
      public long getMaxMemory()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getCachedSize

      +
      public long getCachedSize()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      isEmpty

      +
      public boolean isEmpty()
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getAsyncNextByteArray

      +
      public CompletableFuture<Integer> getAsyncNextByteArray() + throws IOException, +org.apache.commons.compress.compressors.CompressorException, +SAXException
      +
      Deprecated.
      +
      +
      Throws:
      +
      IOException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      deserialize

      +
      @Deprecated +public static org.apache.uima.cas.impl.XmiSerializationSharedData deserialize(org.apache.uima.jcas.JCas pCas)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getNextCAS

      +
      public boolean getNextCAS(org.apache.uima.jcas.JCas empty) + throws IOException, +org.apache.commons.compress.compressors.CompressorException, +SAXException
      +
      Deprecated.
      +
      +
      Throws:
      +
      IOException
      +
      org.apache.commons.compress.compressors.CompressorException
      +
      SAXException
      +
      +
      +
    • +
    • +
      +

      addFilesToConcurrentList

      +
      public static void addFilesToConcurrentList(File folder, + String ending, + ConcurrentLinkedQueue<String> paths)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      sortBySize

      +
      public static ConcurrentLinkedQueue<String> sortBySize(ConcurrentLinkedQueue<String> paths)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      skipBySize

      +
      public static ConcurrentLinkedQueue<String> skipBySize(ConcurrentLinkedQueue<String> paths, + int skipSmallerFiles)
      +
      Deprecated.
      +
      Skips files smaller than skipSmallerFiles
      +
      +
      Parameters:
      +
      paths - paths to files
      +
      skipSmallerFiles - skip files smaller than this value in bytes
      +
      Returns:
      +
      filtered paths to files
      +
      +
      +
    • +
    • +
      +

      random

      +
      public static ConcurrentLinkedQueue<String> random(ConcurrentLinkedQueue<String> paths, + int iRandom)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      takeFirstOrLast

      +
      public static ConcurrentLinkedQueue<String> takeFirstOrLast(ConcurrentLinkedQueue<String> paths, + int n)
      +
      Deprecated.
      +
      Takes the first n or last n elements of the queue
      +
      +
      Parameters:
      +
      paths - List of paths
      +
      n - Number of elements to take, if n is positive, the first n elements are taken, if n is negative, the last n elements are taken, if n is 0, an IllegalArgumentException is thrown
      +
      Returns:
      +
      A new queue with the first or last n elements
      +
      +
      +
    • +
    • +
      +

      removeIfInTarget

      +
      public static ConcurrentLinkedQueue<String> removeIfInTarget(ConcurrentLinkedQueue<String> paths, + String targetLocation, + String targetEnding, + String sourceLocation, + String sourceEnding)
      +
      Deprecated.
      +
      Removes files that are present in the target location
      +
      +
      Parameters:
      +
      paths - List of paths
      +
      targetLocation - Target location where to check for files
      +
      Returns:
      +
      A new queue without files that are present in the target location
      +
      +
      +
    • +
    • +
      +

      getSize

      +
      public static String getSize(String sPath)
      +
      Deprecated.
      +
      +
    • +
    • +
      +

      getFilesInDirectoryRecursive

      +
      public static List<DUUIInputStream> getFilesInDirectoryRecursive(String directory) + throws IOException
      +
      Deprecated.
      +
      +
      Throws:
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/ByteReadFuture.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/ByteReadFuture.html new file mode 100644 index 00000000..40743e03 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/ByteReadFuture.html @@ -0,0 +1,171 @@ + + + + +ByteReadFuture + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ByteReadFuture

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture
+
+
+
+
public class ByteReadFuture +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ByteReadFuture

      +
      public ByteReadFuture(String path, + byte[] bytes)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getPath

      +
      public String getPath()
      +
      +
    • +
    • +
      +

      getBytes

      +
      public byte[] getBytes()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUIAsynchronousProcessor.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUIAsynchronousProcessor.html new file mode 100644 index 00000000..7237f20a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUIAsynchronousProcessor.html @@ -0,0 +1,225 @@ + + + + +DUUIAsynchronousProcessor + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIAsynchronousProcessor

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor
+
+
+
+
public class DUUIAsynchronousProcessor +extends Object
+
Class for asynchronous processing of DUUI readers
+
+
Author:
+
Giuseppe Abrami
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIAsynchronousProcessor

      +
      public DUUIAsynchronousProcessor(Set<DUUICollectionReader> pSet)
      +
      Constructor
      +
      +
      Parameters:
      +
      pSet -
      +
      +
      +
    • +
    • +
      +

      DUUIAsynchronousProcessor

      +
      public DUUIAsynchronousProcessor(DUUICollectionReader... pValues)
      +
      Constructor
      +
      +
      Parameters:
      +
      pValues -
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getProgress

      +
      public AdvancedProgressMeter getProgress()
      +
      return the current progress
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getNextCAS

      +
      public boolean getNextCAS(org.apache.uima.jcas.JCas empty)
      +
      Return the next CAS-object
      +
      +
      Parameters:
      +
      empty -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      isFinish

      +
      public boolean isFinish()
      +
      Is the processor, means all collection readers finish?
      +
      +
      Returns:
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUICollectionDBReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUICollectionDBReader.html new file mode 100644 index 00000000..3497e98a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUICollectionDBReader.html @@ -0,0 +1,186 @@ + + + + +DUUICollectionDBReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface DUUICollectionDBReader

+
+
+
+
All Superinterfaces:
+
DUUICollectionReader
+
+
+
All Known Implementing Classes:
+
DUUISegmentationReader
+
+
+
public interface DUUICollectionDBReader +extends DUUICollectionReader
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getNextCas

      +
      boolean getNextCas(org.apache.uima.jcas.JCas pCas, + String toolUUID, + int pipelinePosition)
      +
      Fill and get the next JCas based on the tool
      +
      +
      Parameters:
      +
      pCas - : JCas to be filled
      +
      toolUUID - : toolUUID
      +
      pipelinePosition -
      +
      Returns:
      +
      true if cas was filled, false if no cas was filled
      +
      +
      +
    • +
    • +
      +

      updateCas

      +
      void updateCas(org.apache.uima.jcas.JCas pCas, + String toolUUID, + boolean status, + List<String> pipelineUUIDs)
      +
      +
    • +
    • +
      +

      finishedLoading

      +
      boolean finishedLoading()
      +
      +
    • +
    • +
      +

      merge

      +
      void merge()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUICollectionReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUICollectionReader.html new file mode 100644 index 00000000..53ae099c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUICollectionReader.html @@ -0,0 +1,206 @@ + + + + +DUUICollectionReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface DUUICollectionReader

+
+
+
+
All Known Subinterfaces:
+
DUUICollectionDBReader
+
+
+
All Known Implementing Classes:
+
DUUIDocumentReader, DUUIFileReader, DUUIFileReaderLazy, DUUIGerParCorReader, DUUISegmentationReader, DUUIWikipediaExtractorReader
+
+
+
public interface DUUICollectionReader
+
Interface for a CollectionReader
+
+
Author:
+
Giuseppe Abrami
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    long
    + +
    +
    How many JCas have already been processed?
    +
    +
    void
    +
    getNextCas(org.apache.uima.jcas.JCas pCas)
    +
    +
    Fill and get the next JCas
    +
    + + +
    +
    Get the Progress
    +
    +
    long
    + +
    +
    Get size of Collection
    +
    +
    boolean
    + +
    +
    Are there still cas to be processed?
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getProgress

      +
      AdvancedProgressMeter getProgress()
      +
      Get the Progress
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getNextCas

      +
      void getNextCas(org.apache.uima.jcas.JCas pCas)
      +
      Fill and get the next JCas
      +
      +
      Parameters:
      +
      pCas -
      +
      +
      +
    • +
    • +
      +

      hasNext

      +
      boolean hasNext()
      +
      Are there still cas to be processed?
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getSize

      +
      long getSize()
      +
      Get size of Collection
      +
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      getDone

      +
      long getDone()
      +
      How many JCas have already been processed?
      +
      +
      Returns:
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUIDocumentDecoder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUIDocumentDecoder.html new file mode 100644 index 00000000..294c6475 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/DUUIDocumentDecoder.html @@ -0,0 +1,165 @@ + + + + +DUUIDocumentDecoder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDocumentDecoder

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIDocumentDecoder
+
+
+
+
public class DUUIDocumentDecoder +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIDocumentDecoder

      +
      public DUUIDocumentDecoder()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/ProgressMeter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/ProgressMeter.html new file mode 100644 index 00000000..e357ecfc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/ProgressMeter.html @@ -0,0 +1,254 @@ + + + + +ProgressMeter + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ProgressMeter

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
+
+
+
public class ProgressMeter +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ProgressMeter

      +
      public ProgressMeter(long limit)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      setLimit

      +
      public void setLimit(long limit)
      +
      +
    • +
    • +
      +

      next

      +
      public void next()
      +
      +
    • +
    • +
      +

      getCount

      +
      public long getCount()
      +
      +
    • +
    • +
      +

      setDone

      +
      public void setDone(long count)
      +
      +
    • +
    • +
      +

      setLeft

      +
      public void setLeft(long count)
      +
      +
    • +
    • +
      +

      getTimeSoFar

      +
      public long getTimeSoFar()
      +
      +
    • +
    • +
      +

      getEstimatedTime

      +
      public long getEstimatedTime()
      +
      +
    • +
    • +
      +

      getRemainingTime

      +
      public long getRemainingTime()
      +
      +
    • +
    • +
      +

      getPercentage

      +
      public int getPercentage()
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    • +
      +

      milliToStringShort

      +
      public static String milliToStringShort(long milli)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/SerializeJSON.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/SerializeJSON.html new file mode 100644 index 00000000..33ff5794 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/SerializeJSON.html @@ -0,0 +1,137 @@ + + + + +SerializeJSON + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface SerializeJSON<T>

+
+
+
+
Type Parameters:
+
T -
+
+
+
public interface SerializeJSON<T>
+
Serialization interface
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
    +
    Serialize
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      serialize

      +
      String serialize()
      +
      Serialize
      +
      +
      Returns:
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.Builder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.Builder.html new file mode 100644 index 00000000..0f6c4eb2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.Builder.html @@ -0,0 +1,117 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.Builder

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html new file mode 100644 index 00000000..0e139b86 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html @@ -0,0 +1,158 @@ + + + + +Uses of Enum Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.html new file mode 100644 index 00000000..0fa7a6ee --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/AsyncCollectionReader.html @@ -0,0 +1,108 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.AsyncCollectionReader

+
+
Packages that use AsyncCollectionReader
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/ByteReadFuture.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/ByteReadFuture.html new file mode 100644 index 00000000..ef35112a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/ByteReadFuture.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.ByteReadFuture
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUIAsynchronousProcessor.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUIAsynchronousProcessor.html new file mode 100644 index 00000000..7f0d2387 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUIAsynchronousProcessor.html @@ -0,0 +1,87 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor

+
+
Packages that use DUUIAsynchronousProcessor
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUICollectionDBReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUICollectionDBReader.html new file mode 100644 index 00000000..c677296a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUICollectionDBReader.html @@ -0,0 +1,126 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionDBReader

+
+
Packages that use DUUICollectionDBReader
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUICollectionReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUICollectionReader.html new file mode 100644 index 00000000..c03c4517 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUICollectionReader.html @@ -0,0 +1,141 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUICollectionReader

+
+
Packages that use DUUICollectionReader
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUIDocumentDecoder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUIDocumentDecoder.html new file mode 100644 index 00000000..1d9ffa16 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/DUUIDocumentDecoder.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIDocumentDecoder + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIDocumentDecoder

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIDocumentDecoder
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/ProgressMeter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/ProgressMeter.html new file mode 100644 index 00000000..202e5783 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/ProgressMeter.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.ProgressMeter
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/SerializeJSON.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/SerializeJSON.html new file mode 100644 index 00000000..2e01c2da --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/class-use/SerializeJSON.html @@ -0,0 +1,59 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.SerializeJSON + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.io.SerializeJSON

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.SerializeJSON
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/IDUUIFormat.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/IDUUIFormat.html new file mode 100644 index 00000000..0994bcc9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/IDUUIFormat.html @@ -0,0 +1,139 @@ + + + + +IDUUIFormat + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+
All Known Implementing Classes:
+
TxtLoader, XmiLoader
+
+
+
public interface IDUUIFormat
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    load(InputStream stream, + org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      load

      +
      void load(InputStream stream, + org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.UIMAException, +IOException
      +
      +
      Throws:
      +
      org.apache.uima.UIMAException
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/TxtLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/TxtLoader.html new file mode 100644 index 00000000..05377930 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/TxtLoader.html @@ -0,0 +1,184 @@ + + + + +TxtLoader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader
+
+
+
+
All Implemented Interfaces:
+
IDUUIFormat
+
+
+
public class TxtLoader +extends Object +implements IDUUIFormat
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      TxtLoader

      +
      public TxtLoader()
      +
      +
    • +
    • +
      +

      TxtLoader

      +
      public TxtLoader(String language)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      load

      +
      public void load(InputStream stream, + org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.UIMAException, +IOException
      +
      +
      Specified by:
      +
      load in interface IDUUIFormat
      +
      Throws:
      +
      org.apache.uima.UIMAException
      +
      IOException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/XmiLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/XmiLoader.html new file mode 100644 index 00000000..4806f2b6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/XmiLoader.html @@ -0,0 +1,174 @@ + + + + +XmiLoader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader
+
+
+
+
All Implemented Interfaces:
+
IDUUIFormat
+
+
+
public class XmiLoader +extends Object +implements IDUUIFormat
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      XmiLoader

      +
      public XmiLoader(boolean lenient)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      load

      +
      public void load(InputStream stream, + org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.UIMAException
      +
      +
      Specified by:
      +
      load in interface IDUUIFormat
      +
      Throws:
      +
      org.apache.uima.UIMAException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/IDUUIFormat.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/IDUUIFormat.html new file mode 100644 index 00000000..3f4c2da5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/IDUUIFormat.html @@ -0,0 +1,87 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.IDUUIFormat + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.IDUUIFormat

+
+
Packages that use IDUUIFormat
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/TxtLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/TxtLoader.html new file mode 100644 index 00000000..e76d21ec --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/TxtLoader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/XmiLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/XmiLoader.html new file mode 100644 index 00000000..aed6c4cf --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/class-use/XmiLoader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-summary.html new file mode 100644 index 00000000..b231196f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-summary.html @@ -0,0 +1,111 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.format + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.format

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io.format
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-tree.html new file mode 100644 index 00000000..5ab3a7db --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-tree.html @@ -0,0 +1,80 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.format Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.format

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.TxtLoader (implements org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.IDUUIFormat)
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.XmiLoader (implements org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.IDUUIFormat)
    • +
    +
  • +
+
+
+

Interface Hierarchy

+
    +
  • org.texttechnologylab.DockerUnifiedUIMAInterface.io.format.IDUUIFormat
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-use.html new file mode 100644 index 00000000..be59c7ff --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/format/package-use.html @@ -0,0 +1,81 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.format + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.io.format

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-summary.html new file mode 100644 index 00000000..b98ecfa1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-summary.html @@ -0,0 +1,133 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-tree.html new file mode 100644 index 00000000..00e069cf --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-tree.html @@ -0,0 +1,103 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-use.html new file mode 100644 index 00000000..fec53fa1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/package-use.html @@ -0,0 +1,150 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.io

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIDocumentReader.Builder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIDocumentReader.Builder.html new file mode 100644 index 00000000..61ea24f3 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIDocumentReader.Builder.html @@ -0,0 +1,290 @@ + + + + +DUUIDocumentReader.Builder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDocumentReader.Builder

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder
+
+
+
+
Enclosing class:
+
DUUIDocumentReader
+
+
+
public static final class DUUIDocumentReader.Builder +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIDocumentReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIDocumentReader.html new file mode 100644 index 00000000..47d36274 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIDocumentReader.html @@ -0,0 +1,350 @@ + + + + +DUUIDocumentReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIDocumentReader

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader
+
+
+
+
All Implemented Interfaces:
+
DUUICollectionReader
+
+
+
public class DUUIDocumentReader +extends Object +implements DUUICollectionReader
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html new file mode 100644 index 00000000..2ba2d9ec --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html @@ -0,0 +1,231 @@ + + + + +DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE

+
+
java.lang.Object +
java.lang.Enum<DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE> +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE>, Constable
+
+
+
Enclosing class:
+
DUUIFileReader
+
+
+
public static enum DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE +extends Enum<DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE>
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReader.html new file mode 100644 index 00000000..cab8e2bf --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReader.html @@ -0,0 +1,413 @@ + + + + +DUUIFileReader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
+
+
+
All Implemented Interfaces:
+
DUUICollectionReader
+
+
+
public class DUUIFileReader +extends Object +implements DUUICollectionReader
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html new file mode 100644 index 00000000..b3f2545f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html @@ -0,0 +1,231 @@ + + + + +DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE

+
+
java.lang.Object +
java.lang.Enum<DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE> +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE>, Constable
+
+
+
Enclosing class:
+
DUUIFileReaderLazy
+
+
+
public static enum DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE +extends Enum<DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE>
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReaderLazy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReaderLazy.html new file mode 100644 index 00000000..a30a39b4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIFileReaderLazy.html @@ -0,0 +1,492 @@ + + + + +DUUIFileReaderLazy + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIFileReaderLazy

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy
+
+
+
+
All Implemented Interfaces:
+
DUUICollectionReader
+
+
+
Direct Known Subclasses:
+
DUUIWikipediaExtractorReader
+
+
+
public class DUUIFileReaderLazy +extends Object +implements DUUICollectionReader
+
Lazy file reader. The reader reads in files, but processing can begin in parallel before the entire file list has been read in.
+
+
Author:
+
Giuseppe Abrami
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIGerParCorReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIGerParCorReader.html new file mode 100644 index 00000000..0512404f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIGerParCorReader.html @@ -0,0 +1,278 @@ + + + + +DUUIGerParCorReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIGerParCorReader

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader
+
+
+
+
All Implemented Interfaces:
+
DUUICollectionReader
+
+
+
public class DUUIGerParCorReader +extends Object +implements DUUICollectionReader
+
Reader for GerParCor
+
+
Author:
+
Giuseppe Abrami
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIParallelFileReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIParallelFileReader.html new file mode 100644 index 00000000..c673b6bf --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIParallelFileReader.html @@ -0,0 +1,221 @@ + + + + +DUUIParallelFileReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIParallelFileReader

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader
+
+
+
+
All Implemented Interfaces:
+
Runnable
+
+
+
public class DUUIParallelFileReader +extends Object +implements Runnable
+
Parallel File Reader - not finished!
+
+
Author:
+
Giuseppe Abrami
+
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      iDebugCount

      +
      public static AtomicInteger iDebugCount
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIParallelFileReader

      +
      public DUUIParallelFileReader(File pFile, + String sEnding, + Collection<String> pResult)
      +
      +
    • +
    • +
      +

      DUUIParallelFileReader

      +
      public DUUIParallelFileReader(File pFile, + String sEnding, + Collection<String> pResult, + int iThreadLevels)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      run

      +
      public void run()
      +
      +
      Specified by:
      +
      run in interface Runnable
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUISegmentationReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUISegmentationReader.html new file mode 100644 index 00000000..686b5d6a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUISegmentationReader.html @@ -0,0 +1,349 @@ + + + + +DUUISegmentationReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationReader

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
+
+
+
All Implemented Interfaces:
+
DUUICollectionDBReader, DUUICollectionReader
+
+
+
public class DUUISegmentationReader +extends Object +implements DUUICollectionDBReader
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIWikipediaExtractorReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIWikipediaExtractorReader.html new file mode 100644 index 00000000..e9c31fe2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIWikipediaExtractorReader.html @@ -0,0 +1,336 @@ + + + + +DUUIWikipediaExtractorReader + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIWikipediaExtractorReader

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
+
+
+
+
All Implemented Interfaces:
+
DUUICollectionReader
+
+
+
public class DUUIWikipediaExtractorReader +extends DUUIFileReaderLazy
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIDocumentReader.Builder.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIDocumentReader.Builder.html new file mode 100644 index 00000000..98c38906 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIDocumentReader.Builder.html @@ -0,0 +1,126 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader.Builder

+
+
Packages that use DUUIDocumentReader.Builder
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIDocumentReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIDocumentReader.html new file mode 100644 index 00000000..61be5684 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIDocumentReader.html @@ -0,0 +1,103 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIDocumentReader

+
+
Packages that use DUUIDocumentReader
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html new file mode 100644 index 00000000..01634c37 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html @@ -0,0 +1,92 @@ + + + + +Uses of Enum Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReader.html new file mode 100644 index 00000000..dadf2881 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html new file mode 100644 index 00000000..585b22e4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE.html @@ -0,0 +1,92 @@ + + + + +Uses of Enum Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReaderLazy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReaderLazy.html new file mode 100644 index 00000000..c57d82c2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIFileReaderLazy.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReaderLazy

+
+
Packages that use DUUIFileReaderLazy
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIGerParCorReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIGerParCorReader.html new file mode 100644 index 00000000..0ef35100 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIGerParCorReader.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIGerParCorReader

+
+
Packages that use DUUIGerParCorReader
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIParallelFileReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIParallelFileReader.html new file mode 100644 index 00000000..baf496ab --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIParallelFileReader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIParallelFileReader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUISegmentationReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUISegmentationReader.html new file mode 100644 index 00000000..063f15ea --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUISegmentationReader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUISegmentationReader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIWikipediaExtractorReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIWikipediaExtractorReader.html new file mode 100644 index 00000000..8a0f9bcf --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/class-use/DUUIWikipediaExtractorReader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIWikipediaExtractorReader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/DUUIHTMLGoogleSERPReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/DUUIHTMLGoogleSERPReader.html new file mode 100644 index 00000000..16ccbb44 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/DUUIHTMLGoogleSERPReader.html @@ -0,0 +1,230 @@ + + + + +DUUIHTMLGoogleSERPReader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.resource.Resource_ImplBase +
org.apache.uima.resource.ConfigurableResource_ImplBase +
org.apache.uima.collection.CollectionReader_ImplBase +
org.apache.uima.fit.component.CasCollectionReader_ImplBase +
org.dkpro.core.api.io.ResourceCollectionReaderBase +
org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.DUUIHTMLGoogleSERPReader
+
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.collection.base_cpm.BaseCollectionReader, org.apache.uima.collection.CollectionReader, org.apache.uima.resource.ConfigurableResource, org.apache.uima.resource.Resource
+
+
+
public class DUUIHTMLGoogleSERPReader +extends org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.ResourceCollectionReaderBase

    +org.dkpro.core.api.io.ResourceCollectionReaderBase.Resource
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    +

    Fields inherited from class org.dkpro.core.api.io.ResourceCollectionReaderBase

    +EXCLUDE_PREFIX, INCLUDE_PREFIX, KEY_RESOURCE_RESOLVER, PARAM_INCLUDE_HIDDEN, PARAM_LANGUAGE, PARAM_LOG_FREQ, PARAM_PATH, PARAM_PATTERNS, PARAM_SOURCE_LOCATION, PARAM_USE_DEFAULT_EXCLUDES
    +
    +

    Fields inherited from interface org.apache.uima.resource.Resource

    +PARAM_AGGREGATE_SOFA_MAPPINGS, PARAM_CONFIG_MANAGER, PARAM_CONFIG_PARAM_SETTINGS, PARAM_EXTERNAL_OVERRIDE_SETTINGS, PARAM_PERFORMANCE_TUNING_SETTINGS, PARAM_RESOURCE_MANAGER, PARAM_UIMA_CONTEXT
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    getNext(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase

    +getNext
    +
    +

    Methods inherited from class org.dkpro.core.api.io.ResourceCollectionReaderBase

    +getLanguage, getProgress, hasNext, initialize
    +
    +

    Methods inherited from class org.apache.uima.fit.component.CasCollectionReader_ImplBase

    +close, initialize
    +
    +

    Methods inherited from class org.apache.uima.collection.CollectionReader_ImplBase

    +destroy, getCasInitializer, getProcessingResourceMetaData, initialize, isConsuming, reconfigure, setCasInitializer, typeSystemInit
    +
    +

    Methods inherited from class org.apache.uima.resource.ConfigurableResource_ImplBase

    +getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
    +
    +

    Methods inherited from class org.apache.uima.resource.Resource_ImplBase

    +getCasManager, getLogger, getMetaData, getRelativePathResolver, getResourceManager, getUimaContext, getUimaContextAdmin, loadUserClass, loadUserClassOrThrow, setContextHolder, setContextHolderX, setLogger, withContextHolder
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +

    Methods inherited from interface org.apache.uima.resource.ConfigurableResource

    +getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
    +
    +

    Methods inherited from interface org.apache.uima.resource.Resource

    +getLogger, getMetaData, getResourceManager, getUimaContext, getUimaContextAdmin, setLogger
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIHTMLGoogleSERPReader

      +
      public DUUIHTMLGoogleSERPReader()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getNext

      +
      public void getNext(org.apache.uima.jcas.JCas jCas) + throws IOException, +org.apache.uima.collection.CollectionException
      +
      +
      Specified by:
      +
      getNext in class org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase
      +
      Throws:
      +
      IOException
      +
      org.apache.uima.collection.CollectionException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/HTMLGoogleSERPLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/HTMLGoogleSERPLoader.html new file mode 100644 index 00000000..057da711 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/HTMLGoogleSERPLoader.html @@ -0,0 +1,207 @@ + + + + +HTMLGoogleSERPLoader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.xml.sax.helpers.DefaultHandler +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader
+
+
+
+
+
All Implemented Interfaces:
+
ContentHandler, DTDHandler, EntityResolver, ErrorHandler
+
+
+
public class HTMLGoogleSERPLoader +extends DefaultHandler
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/class-use/DUUIHTMLGoogleSERPReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/class-use/DUUIHTMLGoogleSERPReader.html new file mode 100644 index 00000000..4c858ebb --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/class-use/DUUIHTMLGoogleSERPReader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.DUUIHTMLGoogleSERPReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.DUUIHTMLGoogleSERPReader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.DUUIHTMLGoogleSERPReader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/class-use/HTMLGoogleSERPLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/class-use/HTMLGoogleSERPLoader.html new file mode 100644 index 00000000..7d82bb79 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/class-use/HTMLGoogleSERPLoader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google.HTMLGoogleSERPLoader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-summary.html new file mode 100644 index 00000000..d9600c77 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-summary.html @@ -0,0 +1,86 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-tree.html new file mode 100644 index 00000000..cd4717e0 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-tree.html @@ -0,0 +1,102 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.xml.sax.helpers.DefaultHandler (implements org.xml.sax.ContentHandler, org.xml.sax.DTDHandler, org.xml.sax.EntityResolver, org.xml.sax.ErrorHandler) + +
    • +
    • org.apache.uima.resource.Resource_ImplBase (implements org.apache.uima.resource.Resource) +
        +
      • org.apache.uima.resource.ConfigurableResource_ImplBase (implements org.apache.uima.resource.ConfigurableResource) +
          +
        • org.apache.uima.collection.CollectionReader_ImplBase (implements org.apache.uima.collection.CollectionReader) +
            +
          • org.apache.uima.fit.component.CasCollectionReader_ImplBase +
              +
            • org.dkpro.core.api.io.ResourceCollectionReaderBase +
                +
              • org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase + +
              • +
              +
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-use.html new file mode 100644 index 00000000..2d05e5d5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/google/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/DUUIHTMLReadabilityReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/DUUIHTMLReadabilityReader.html new file mode 100644 index 00000000..10f1ca85 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/DUUIHTMLReadabilityReader.html @@ -0,0 +1,230 @@ + + + + +DUUIHTMLReadabilityReader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.resource.Resource_ImplBase +
org.apache.uima.resource.ConfigurableResource_ImplBase +
org.apache.uima.collection.CollectionReader_ImplBase +
org.apache.uima.fit.component.CasCollectionReader_ImplBase +
org.dkpro.core.api.io.ResourceCollectionReaderBase +
org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader
+
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.collection.base_cpm.BaseCollectionReader, org.apache.uima.collection.CollectionReader, org.apache.uima.resource.ConfigurableResource, org.apache.uima.resource.Resource
+
+
+
public class DUUIHTMLReadabilityReader +extends org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.ResourceCollectionReaderBase

    +org.dkpro.core.api.io.ResourceCollectionReaderBase.Resource
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    +

    Fields inherited from class org.dkpro.core.api.io.ResourceCollectionReaderBase

    +EXCLUDE_PREFIX, INCLUDE_PREFIX, KEY_RESOURCE_RESOLVER, PARAM_INCLUDE_HIDDEN, PARAM_LANGUAGE, PARAM_LOG_FREQ, PARAM_PATH, PARAM_PATTERNS, PARAM_SOURCE_LOCATION, PARAM_USE_DEFAULT_EXCLUDES
    +
    +

    Fields inherited from interface org.apache.uima.resource.Resource

    +PARAM_AGGREGATE_SOFA_MAPPINGS, PARAM_CONFIG_MANAGER, PARAM_CONFIG_PARAM_SETTINGS, PARAM_EXTERNAL_OVERRIDE_SETTINGS, PARAM_PERFORMANCE_TUNING_SETTINGS, PARAM_RESOURCE_MANAGER, PARAM_UIMA_CONTEXT
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    getNext(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase

    +getNext
    +
    +

    Methods inherited from class org.dkpro.core.api.io.ResourceCollectionReaderBase

    +getLanguage, getProgress, hasNext, initialize
    +
    +

    Methods inherited from class org.apache.uima.fit.component.CasCollectionReader_ImplBase

    +close, initialize
    +
    +

    Methods inherited from class org.apache.uima.collection.CollectionReader_ImplBase

    +destroy, getCasInitializer, getProcessingResourceMetaData, initialize, isConsuming, reconfigure, setCasInitializer, typeSystemInit
    +
    +

    Methods inherited from class org.apache.uima.resource.ConfigurableResource_ImplBase

    +getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
    +
    +

    Methods inherited from class org.apache.uima.resource.Resource_ImplBase

    +getCasManager, getLogger, getMetaData, getRelativePathResolver, getResourceManager, getUimaContext, getUimaContextAdmin, loadUserClass, loadUserClassOrThrow, setContextHolder, setContextHolderX, setLogger, withContextHolder
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +

    Methods inherited from interface org.apache.uima.resource.ConfigurableResource

    +getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
    +
    +

    Methods inherited from interface org.apache.uima.resource.Resource

    +getLogger, getMetaData, getResourceManager, getUimaContext, getUimaContextAdmin, setLogger
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIHTMLReadabilityReader

      +
      public DUUIHTMLReadabilityReader()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getNext

      +
      public void getNext(org.apache.uima.jcas.JCas jCas) + throws IOException, +org.apache.uima.collection.CollectionException
      +
      +
      Specified by:
      +
      getNext in class org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase
      +
      Throws:
      +
      IOException
      +
      org.apache.uima.collection.CollectionException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/HTMLReadabilityLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/HTMLReadabilityLoader.html new file mode 100644 index 00000000..293ca2ce --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/HTMLReadabilityLoader.html @@ -0,0 +1,207 @@ + + + + +HTMLReadabilityLoader + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.xml.sax.helpers.DefaultHandler +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader
+
+
+
+
+
All Implemented Interfaces:
+
ContentHandler, DTDHandler, EntityResolver, ErrorHandler
+
+
+
public class HTMLReadabilityLoader +extends DefaultHandler
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/class-use/DUUIHTMLReadabilityReader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/class-use/DUUIHTMLReadabilityReader.html new file mode 100644 index 00000000..5536f826 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/class-use/DUUIHTMLReadabilityReader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/class-use/HTMLReadabilityLoader.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/class-use/HTMLReadabilityLoader.html new file mode 100644 index 00000000..b92f4c16 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/class-use/HTMLReadabilityLoader.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-summary.html new file mode 100644 index 00000000..6458fc13 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-summary.html @@ -0,0 +1,86 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-tree.html new file mode 100644 index 00000000..ac3e95be --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-tree.html @@ -0,0 +1,102 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.xml.sax.helpers.DefaultHandler (implements org.xml.sax.ContentHandler, org.xml.sax.DTDHandler, org.xml.sax.EntityResolver, org.xml.sax.ErrorHandler) + +
    • +
    • org.apache.uima.resource.Resource_ImplBase (implements org.apache.uima.resource.Resource) +
        +
      • org.apache.uima.resource.ConfigurableResource_ImplBase (implements org.apache.uima.resource.ConfigurableResource) +
          +
        • org.apache.uima.collection.CollectionReader_ImplBase (implements org.apache.uima.collection.CollectionReader) +
            +
          • org.apache.uima.fit.component.CasCollectionReader_ImplBase +
              +
            • org.dkpro.core.api.io.ResourceCollectionReaderBase +
                +
              • org.dkpro.core.api.io.JCasResourceCollectionReader_ImplBase + +
              • +
              +
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-use.html new file mode 100644 index 00000000..ff027e16 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/html/readability/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-summary.html new file mode 100644 index 00000000..63c8fb61 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-summary.html @@ -0,0 +1,131 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-tree.html new file mode 100644 index 00000000..f9cc29d6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-tree.html @@ -0,0 +1,98 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-use.html new file mode 100644 index 00000000..b30342bb --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/package-use.html @@ -0,0 +1,108 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader + + + + + + + + + + + + + + + + + + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/GZIPLocalFile.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/GZIPLocalFile.html new file mode 100644 index 00000000..40e41063 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/GZIPLocalFile.html @@ -0,0 +1,172 @@ + + + + +GZIPLocalFile + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile
+
+
+
+
All Implemented Interfaces:
+
IDUUITransport
+
+
+
public class GZIPLocalFile +extends Object +implements IDUUITransport
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/IDUUITransport.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/IDUUITransport.html new file mode 100644 index 00000000..fe169736 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/IDUUITransport.html @@ -0,0 +1,135 @@ + + + + +IDUUITransport + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+
All Known Implementing Classes:
+
GZIPLocalFile, LocalFile
+
+
+
public interface IDUUITransport
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
     
    +
    +
    +
    +
    +
  • +
+
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/LocalFile.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/LocalFile.html new file mode 100644 index 00000000..52126f85 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/LocalFile.html @@ -0,0 +1,172 @@ + + + + +LocalFile + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile
+
+
+
+
All Implemented Interfaces:
+
IDUUITransport
+
+
+
public class LocalFile +extends Object +implements IDUUITransport
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/GZIPLocalFile.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/GZIPLocalFile.html new file mode 100644 index 00000000..46ad75ce --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/GZIPLocalFile.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/IDUUITransport.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/IDUUITransport.html new file mode 100644 index 00000000..45a9fb1b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/IDUUITransport.html @@ -0,0 +1,87 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.IDUUITransport + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.IDUUITransport

+
+
Packages that use IDUUITransport
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/LocalFile.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/LocalFile.html new file mode 100644 index 00000000..c02cfefc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/class-use/LocalFile.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-summary.html new file mode 100644 index 00000000..62f6be11 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-summary.html @@ -0,0 +1,111 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-tree.html new file mode 100644 index 00000000..5d666922 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-tree.html @@ -0,0 +1,80 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.GZIPLocalFile (implements org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.IDUUITransport)
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.LocalFile (implements org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.IDUUITransport)
    • +
    +
  • +
+
+
+

Interface Hierarchy

+
    +
  • org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport.IDUUITransport
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-use.html new file mode 100644 index 00000000..53ce4ff7 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/transport/package-use.html @@ -0,0 +1,81 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/GerParCorWriter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/GerParCorWriter.html new file mode 100644 index 00000000..39bf126c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/GerParCorWriter.html @@ -0,0 +1,282 @@ + + + + +GerParCorWriter + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasConsumer_ImplBase +
org.dkpro.core.api.io.JCasFileWriter_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class GerParCorWriter +extends org.dkpro.core.api.io.JCasFileWriter_ImplBase
+
GerParCor Database Writer
+
+
Author:
+
Giuseppe Abrami
+
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +org.dkpro.core.api.io.JCasFileWriter_ImplBase.NamedOutputStream
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    static final String
    + +
     
    +
    +
    +

    Fields inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +PARAM_COMPRESSION, PARAM_ESCAPE_FILENAME, PARAM_OVERWRITE, PARAM_SINGULAR_TARGET, PARAM_STRIP_EXTENSION, PARAM_TARGET_LOCATION, PARAM_USE_DOCUMENT_ID
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    initialize(org.apache.uima.UimaContext aContext)
    +
     
    +
    void
    +
    process(org.apache.uima.jcas.JCas aJCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +collectionProcessComplete
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      GerParCorWriter

      +
      public GerParCorWriter()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      initialize

      +
      public void initialize(org.apache.uima.UimaContext aContext) + throws org.apache.uima.resource.ResourceInitializationException
      +
      +
      Specified by:
      +
      initialize in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      initialize in class org.apache.uima.fit.component.JCasConsumer_ImplBase
      +
      Throws:
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      +
      +
    • +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas aJCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/TTLabXmiWriter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/TTLabXmiWriter.html new file mode 100644 index 00000000..3d2da70f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/TTLabXmiWriter.html @@ -0,0 +1,334 @@ + + + + +TTLabXmiWriter + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasConsumer_ImplBase +
org.dkpro.core.api.io.JCasFileWriter_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class TTLabXmiWriter +extends org.dkpro.core.api.io.JCasFileWriter_ImplBase
+
TTLabXmiWriter to write files to XMI.
+
+
Author:
+
Giuseppe Abrami
+
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +org.dkpro.core.api.io.JCasFileWriter_ImplBase.NamedOutputStream
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
    +
    Specify the suffix of output files.
    +
    +
    static final String
    + +
     
    +
    static final String
    + +
    +
    Location to write the type system to.
    +
    +
    static final String
    + +
    +
    Defines the XML version used for serializing the data.
    +
    +
    +
    +

    Fields inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +PARAM_COMPRESSION, PARAM_ESCAPE_FILENAME, PARAM_OVERWRITE, PARAM_SINGULAR_TARGET, PARAM_STRIP_EXTENSION, PARAM_TARGET_LOCATION, PARAM_USE_DOCUMENT_ID
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    initialize(org.apache.uima.UimaContext aContext)
    +
     
    +
    void
    +
    process(org.apache.uima.jcas.JCas aJCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +collectionProcessComplete
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      PARAM_PRETTY_PRINT

      +
      public static final String PARAM_PRETTY_PRINT
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      PARAM_TYPE_SYSTEM_FILE

      +
      public static final String PARAM_TYPE_SYSTEM_FILE
      +
      Location to write the type system to. If this is not set, a file called typesystem.xml will + be written to the XMI output path. If this is set, it is expected to be a file relative + to the current work directory or an absolute file. +
      + If this parameter is set, the JCasFileWriter_ImplBase.PARAM_COMPRESSION parameter has no effect on the + type system. Instead, if the file name ends in ".gz", the file will be compressed, + otherwise not.
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      PARAM_FILENAME_EXTENSION

      +
      public static final String PARAM_FILENAME_EXTENSION
      +
      Specify the suffix of output files. Default value .xmi. If the suffix is not + needed, provide an empty string as value.
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      PARAM_VERSION

      +
      public static final String PARAM_VERSION
      +
      Defines the XML version used for serializing the data. The default is XML "1.0". + However, XML 1.0 does not support certain Unicode characters. To support a wider range of + characters, you can switch this parameter to "1.1".
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      TTLabXmiWriter

      +
      public TTLabXmiWriter()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas aJCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    • +
      +

      initialize

      +
      public void initialize(org.apache.uima.UimaContext aContext) + throws org.apache.uima.resource.ResourceInitializationException
      +
      +
      Specified by:
      +
      initialize in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      initialize in class org.apache.uima.fit.component.JCasConsumer_ImplBase
      +
      Throws:
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/class-use/GerParCorWriter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/class-use/GerParCorWriter.html new file mode 100644 index 00000000..56a58173 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/class-use/GerParCorWriter.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/class-use/TTLabXmiWriter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/class-use/TTLabXmiWriter.html new file mode 100644 index 00000000..1b9b336a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/class-use/TTLabXmiWriter.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-summary.html new file mode 100644 index 00000000..b7dd9835 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-summary.html @@ -0,0 +1,107 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-tree.html new file mode 100644 index 00000000..82bb4180 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-tree.html @@ -0,0 +1,94 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.apache.uima.analysis_component.AnalysisComponent_ImplBase (implements org.apache.uima.analysis_component.AnalysisComponent) +
        +
      • org.apache.uima.analysis_component.Annotator_ImplBase +
          +
        • org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
            +
          • org.apache.uima.fit.component.JCasConsumer_ImplBase +
              +
            • org.dkpro.core.api.io.JCasFileWriter_ImplBase +
                +
              • org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.GerParCorWriter
              • +
              • org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer.TTLabXmiWriter
              • +
              +
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-use.html new file mode 100644 index 00000000..2619c131 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/io/writer/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUICustomRestricedLuaJavaLib.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUICustomRestricedLuaJavaLib.html new file mode 100644 index 00000000..eaece70c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUICustomRestricedLuaJavaLib.html @@ -0,0 +1,222 @@ + + + + +DUUICustomRestricedLuaJavaLib + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUICustomRestricedLuaJavaLib

+
+
java.lang.Object +
org.luaj.vm2.Varargs +
org.luaj.vm2.LuaValue +
org.luaj.vm2.LuaFunction +
org.luaj.vm2.lib.LibFunction +
org.luaj.vm2.lib.VarArgFunction +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib
+
+
+
+
+
+
+
+
+
public class DUUICustomRestricedLuaJavaLib +extends org.luaj.vm2.lib.VarArgFunction
+
+
+
    + +
  • +
    +

    Field Summary

    +
    +

    Fields inherited from class org.luaj.vm2.LuaFunction

    +s_metatable
    +
    +

    Fields inherited from class org.luaj.vm2.LuaValue

    +ADD, CALL, CONCAT, DIV, EMPTYSTRING, ENV, EQ, FALSE, INDEX, LE, LEN, LT, METATABLE, MINUSONE, MOD, MODE, MUL, NEWINDEX, NIL, NILS, NONE, NOVALS, ONE, POW, SUB, TBOOLEAN, TFUNCTION, TINT, TLIGHTUSERDATA, TNIL, TNONE, TNUMBER, TOSTRING, TRUE, TSTRING, TTABLE, TTHREAD, TUSERDATA, TVALUE, TYPE_NAMES, UNM, ZERO
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    +
    DUUICustomRestricedLuaJavaLib(String new_name, + int new_opcode, + Set<String> allowedClasses)
    +
     
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
     
    +
    org.luaj.vm2.Varargs
    +
    invoke(org.luaj.vm2.Varargs args)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.luaj.vm2.lib.VarArgFunction

    +call, call, call, call, onInvoke
    +
    +

    Methods inherited from class org.luaj.vm2.lib.LibFunction

    +call, tojstring
    +
    +

    Methods inherited from class org.luaj.vm2.LuaFunction

    +checkfunction, classnamestub, getmetatable, isfunction, name, optfunction, strvalue, type, typename
    +
    +

    Methods inherited from class org.luaj.vm2.LuaValue

    +add, add, add, and, arg, arg1, argerror, assert_, buffer, call, checkboolean, checkclosure, checkdouble, checkglobals, checkint, checkinteger, checkjstring, checklong, checknotnil, checknumber, checknumber, checkstring, checktable, checkthread, checkuserdata, checkuserdata, comparemt, concat, concat, concatmt, concatTo, concatTo, concatTo, div, div, div, divInto, eq, eq_b, eqmtcall, equals, error, get, get, get, gt, gt, gt, gt_b, gt_b, gt_b, gteq, gteq, gteq, gteq_b, gteq_b, gteq_b, inext, initupvalue1, invoke, invoke, invoke, invoke, invoke, invokemethod, invokemethod, invokemethod, invokemethod, invokemethod, invokemethod, isboolean, isclosure, isint, isinttype, islong, isnil, isnumber, isstring, istable, isthread, isuserdata, isuserdata, isvalidkey, len, length, listOf, listOf, load, lt, lt, lt, lt_b, lt_b, lt_b, lteq, lteq, lteq, lteq_b, lteq_b, lteq_b, metatag, method, method, method, method, method, method, mod, mod, mod, modFrom, mul, mul, mul, narg, neg, neq, neq_b, next, not, optboolean, optclosure, optdouble, optint, optinteger, optjstring, optlong, optnumber, optstring, opttable, optthread, optuserdata, optuserdata, optvalue, or, pow, pow, pow, powWith, powWith, presize, raweq, raweq, raweq, raweq, raweq, rawget, rawget, rawget, rawlen, rawset, rawset, rawset, rawset, rawset, rawset, rawset, rawsetlist, set, set, set, set, set, set, set, setmetatable, strcmp, strcmp, strongvalue, sub, sub, sub, subargs, subFrom, subFrom, tableOf, tableOf, tableOf, tableOf, tableOf, tableOf, tailcallOf, testfor_b, toboolean, tobyte, tochar, todouble, tofloat, toint, tolong, tonumber, toshort, tostring, toString, touserdata, touserdata, userdataOf, userdataOf, valueOf, valueOf, valueOf, valueOf, valueOf, valueOf, varargsOf, varargsOf, varargsOf, varargsOf, varargsOf, varargsOf
    +
    +

    Methods inherited from class org.luaj.vm2.Varargs

    +argcheck, checkboolean, checkclosure, checkdouble, checkfunction, checkint, checkinteger, checkjstring, checklong, checknotnil, checknumber, checkstring, checktable, checkthread, checkuserdata, checkuserdata, checkvalue, eval, isfunction, isnil, isnoneornil, isnumber, isstring, istable, isTailcall, isthread, isuserdata, isvalue, optboolean, optclosure, optdouble, optfunction, optint, optinteger, optjstring, optlong, optnumber, optstring, opttable, optthread, optuserdata, optuserdata, optvalue, toboolean, tobyte, tochar, todouble, tofloat, toint, tojstring, tolong, toshort, touserdata, touserdata, type
    +
    +

    Methods inherited from class java.lang.Object

    +getClass, hashCode, notify, notifyAll, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUICustomRestricedLuaJavaLib

      +
      public DUUICustomRestricedLuaJavaLib(Set<String> allowedClasses)
      +
      +
    • +
    • +
      +

      DUUICustomRestricedLuaJavaLib

      +
      public DUUICustomRestricedLuaJavaLib(String new_name, + int new_opcode, + Set<String> allowedClasses)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      get_name

      +
      public String get_name()
      +
      +
    • +
    • +
      +

      invoke

      +
      public org.luaj.vm2.Varargs invoke(org.luaj.vm2.Varargs args)
      +
      +
      Overrides:
      +
      invoke in class org.luaj.vm2.lib.VarArgFunction
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaCommunicationLayer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaCommunicationLayer.html new file mode 100644 index 00000000..f1938055 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaCommunicationLayer.html @@ -0,0 +1,265 @@ + + + + +DUUILuaCommunicationLayer + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILuaCommunicationLayer

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
+
+
+
All Implemented Interfaces:
+
IDUUICommunicationLayer
+
+
+
public class DUUILuaCommunicationLayer +extends Object +implements IDUUICommunicationLayer
+
Implementation of a communication layer for LUA
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaCompiledFile.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaCompiledFile.html new file mode 100644 index 00000000..811bedf1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaCompiledFile.html @@ -0,0 +1,103 @@ + + + + +DUUILuaCompiledFile + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILuaCompiledFile

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCompiledFile
+
+
+
+
public class DUUILuaCompiledFile +extends Object
+
Class on the use of Lua
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaContext.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaContext.html new file mode 100644 index 00000000..7c9cd264 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaContext.html @@ -0,0 +1,245 @@ + + + + +DUUILuaContext + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILuaContext

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
+
+
+
+
public class DUUILuaContext +extends Object
+
Class for managing and using Lua contexts
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaSandbox.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaSandbox.html new file mode 100644 index 00000000..21c55c65 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaSandbox.html @@ -0,0 +1,338 @@ + + + + +DUUILuaSandbox + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUILuaSandbox

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
+
+
+
+
public class DUUILuaSandbox +extends Object
+
Lua sandbox to ensure proper class usage or its restriction by Lua
+
+
Author:
+
Alexander Leonhardt
+
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      _enable_io

      +
      public boolean _enable_io
      +
      +
    • +
    • +
      +

      _enable_coroutines

      +
      public boolean _enable_coroutines
      +
      +
    • +
    • +
      +

      _enable_os

      +
      public boolean _enable_os
      +
      +
    • +
    • +
      +

      _max_instruction_count

      +
      public int _max_instruction_count
      +
      +
    • +
    • +
      +

      _allowedJavaClasses

      +
      public Set<String> _allowedJavaClasses
      +
      +
    • +
    • +
      +

      _allowAllJavaClasses

      +
      public boolean _allowAllJavaClasses
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUILuaSandbox

      +
      public DUUILuaSandbox()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getEnabledIo

      +
      public boolean getEnabledIo()
      +
      +
    • +
    • +
      +

      getEnabledCoroutines

      +
      public boolean getEnabledCoroutines()
      +
      +
    • +
    • +
      +

      getEnabledOs

      +
      public boolean getEnabledOs()
      +
      +
    • +
    • +
      +

      getEnabledAllJavaClasses

      +
      public boolean getEnabledAllJavaClasses()
      +
      +
    • +
    • +
      +

      getMaxInstructionCount

      +
      public int getMaxInstructionCount()
      +
      +
    • +
    • +
      +

      getAllowedJavaClasses

      +
      public Set<String> getAllowedJavaClasses()
      +
      +
    • +
    • +
      +

      withIo

      +
      public DUUILuaSandbox withIo(boolean enableIo)
      +
      +
    • +
    • +
      +

      withOs

      +
      public DUUILuaSandbox withOs(boolean enableOs)
      +
      +
    • +
    • +
      +

      withCoroutines

      +
      public DUUILuaSandbox withCoroutines(boolean enableCoroutines)
      +
      +
    • +
    • +
      +

      withAllJavaClasses

      +
      public DUUILuaSandbox withAllJavaClasses(boolean enableAllJavaClasses)
      +
      +
    • +
    • +
      +

      withLimitInstructionCount

      +
      public DUUILuaSandbox withLimitInstructionCount(int maxInstructionCount)
      +
      +
    • +
    • +
      +

      withAllowedJavaClass

      +
      public DUUILuaSandbox withAllowedJavaClass(String className)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaUtils.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaUtils.html new file mode 100644 index 00000000..3a763ad8 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/DUUILuaUtils.html @@ -0,0 +1,165 @@ + + + + +DUUILuaUtils + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils
+
+
+
+
public class DUUILuaUtils +extends Object
+
Auxiliary class for the UTF16 problem
+
+
Author:
+
Daniel Baumartz
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUILuaUtils

      +
      public DUUILuaUtils()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getDocumentTextLength

      +
      public static int getDocumentTextLength(org.apache.uima.jcas.JCas jCas)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/LuaConsts.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/LuaConsts.html new file mode 100644 index 00000000..bc2fa374 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/LuaConsts.html @@ -0,0 +1,170 @@ + + + + +LuaConsts + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts
+
+
+
+
public class LuaConsts +extends Object
+
Lua Consts
+
+
Author:
+
Giuseppe Abrami
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      LuaConsts

      +
      public LuaConsts()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUICustomRestricedLuaJavaLib.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUICustomRestricedLuaJavaLib.html new file mode 100644 index 00000000..b2c30cbd --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUICustomRestricedLuaJavaLib.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUICustomRestricedLuaJavaLib
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaCommunicationLayer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaCommunicationLayer.html new file mode 100644 index 00000000..b82b192b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaCommunicationLayer.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaCompiledFile.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaCompiledFile.html new file mode 100644 index 00000000..1e501c8f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaCompiledFile.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCompiledFile + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCompiledFile

+
+
Packages that use DUUILuaCompiledFile
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaContext.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaContext.html new file mode 100644 index 00000000..a97ed651 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaContext.html @@ -0,0 +1,177 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext

+
+
Packages that use DUUILuaContext
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaSandbox.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaSandbox.html new file mode 100644 index 00000000..e59d70f2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaSandbox.html @@ -0,0 +1,108 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox

+
+
Packages that use DUUILuaSandbox
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaUtils.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaUtils.html new file mode 100644 index 00000000..680ae871 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/DUUILuaUtils.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/LuaConsts.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/LuaConsts.html new file mode 100644 index 00000000..9c0917c2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/class-use/LuaConsts.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-summary.html new file mode 100644 index 00000000..70a45195 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-summary.html @@ -0,0 +1,119 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.lua + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.lua

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.lua
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-tree.html new file mode 100644 index 00000000..88200713 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-tree.html @@ -0,0 +1,99 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.lua Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.lua

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCommunicationLayer (implements org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer)
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaCompiledFile
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaSandbox
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaUtils
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.lua.LuaConsts
    • +
    • org.luaj.vm2.Varargs +
        +
      • org.luaj.vm2.LuaValue +
          +
        • org.luaj.vm2.LuaFunction +
            +
          • org.luaj.vm2.lib.LibFunction + +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-use.html new file mode 100644 index 00000000..85956d2c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/lua/package-use.html @@ -0,0 +1,121 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.lua + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.lua

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/AdvancedProgressMeter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/AdvancedProgressMeter.html new file mode 100644 index 00000000..333628c9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/AdvancedProgressMeter.html @@ -0,0 +1,254 @@ + + + + +AdvancedProgressMeter + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AdvancedProgressMeter

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
+
+
+
+
public class AdvancedProgressMeter +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AdvancedProgressMeter

      +
      public AdvancedProgressMeter(long limit)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      next

      +
      public void next()
      +
      +
    • +
    • +
      +

      setMax

      +
      public void setMax(long iMax)
      +
      +
    • +
    • +
      +

      getCount

      +
      public long getCount()
      +
      +
    • +
    • +
      +

      setDone

      +
      public void setDone(long count)
      +
      +
    • +
    • +
      +

      setLeft

      +
      public void setLeft(long count)
      +
      +
    • +
    • +
      +

      getTimeSoFar

      +
      public long getTimeSoFar()
      +
      +
    • +
    • +
      +

      getEstimatedTime

      +
      public long getEstimatedTime()
      +
      +
    • +
    • +
      +

      getRemainingTime

      +
      public long getRemainingTime()
      +
      +
    • +
    • +
      +

      getPercentage

      +
      public int getPercentage()
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class Object
      +
      +
      +
    • +
    • +
      +

      milliToStringShort

      +
      public static String milliToStringShort(long milli)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIEvent.Sender.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIEvent.Sender.html new file mode 100644 index 00000000..7a0357d4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIEvent.Sender.html @@ -0,0 +1,287 @@ + + + + +DUUIEvent.Sender + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class DUUIEvent.Sender

+
+
java.lang.Object +
java.lang.Enum<DUUIEvent.Sender> +
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<DUUIEvent.Sender>, Constable
+
+
+
Enclosing class:
+
DUUIEvent
+
+
+
public static enum DUUIEvent.Sender +extends Enum<DUUIEvent.Sender>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static DUUIEvent.Sender[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static DUUIEvent.Sender valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIEvent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIEvent.html new file mode 100644 index 00000000..e0cee439 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIEvent.html @@ -0,0 +1,255 @@ + + + + +DUUIEvent + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
+
+
+
+
public class DUUIEvent +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIMonitor.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIMonitor.html new file mode 100644 index 00000000..18781ad7 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIMonitor.html @@ -0,0 +1,229 @@ + + + + +DUUIMonitor + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
+
+
+
+
public class DUUIMonitor +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIStatus.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIStatus.html new file mode 100644 index 00000000..4e67a940 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/DUUIStatus.html @@ -0,0 +1,515 @@ + + + + +DUUIStatus + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
+
+
+
public class DUUIStatus +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/AdvancedProgressMeter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/AdvancedProgressMeter.html new file mode 100644 index 00000000..5bb7cdcb --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/AdvancedProgressMeter.html @@ -0,0 +1,119 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter

+
+
Packages that use AdvancedProgressMeter
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIEvent.Sender.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIEvent.Sender.html new file mode 100644 index 00000000..a7b2c128 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIEvent.Sender.html @@ -0,0 +1,147 @@ + + + + +Uses of Enum Class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent.Sender

+
+
Packages that use DUUIEvent.Sender
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIEvent.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIEvent.html new file mode 100644 index 00000000..cd090254 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIEvent.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent

+
+
Packages that use DUUIEvent
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIMonitor.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIMonitor.html new file mode 100644 index 00000000..f0b45d89 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIMonitor.html @@ -0,0 +1,105 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor

+
+
Packages that use DUUIMonitor
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIStatus.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIStatus.html new file mode 100644 index 00000000..acd57c20 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/class-use/DUUIStatus.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-summary.html new file mode 100644 index 00000000..7740f2d1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-summary.html @@ -0,0 +1,109 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-tree.html new file mode 100644 index 00000000..02c14683 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-tree.html @@ -0,0 +1,90 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.AdvancedProgressMeter
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIEvent
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIMonitor
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring.DUUIStatus
    • +
    +
  • +
+
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-use.html new file mode 100644 index 00000000..b31ddc1b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/monitoring/package-use.html @@ -0,0 +1,126 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring + + + + + + + + + + + + + + + + + + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-summary.html new file mode 100644 index 00000000..bb2eead0 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-summary.html @@ -0,0 +1,157 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-tree.html new file mode 100644 index 00000000..6847b7f0 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-tree.html @@ -0,0 +1,103 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-use.html new file mode 100644 index 00000000..1f88da5c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/package-use.html @@ -0,0 +1,259 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIMockStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIMockStorageBackend.html new file mode 100644 index 00000000..1c940182 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIMockStorageBackend.html @@ -0,0 +1,273 @@ + + + + +DUUIMockStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
+
+
+
All Implemented Interfaces:
+
IDUUIStorageBackend
+
+
+
public class DUUIMockStorageBackend +extends Object +implements IDUUIStorageBackend
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIPipelineDocumentPerformance.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIPipelineDocumentPerformance.html new file mode 100644 index 00000000..99bfd056 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIPipelineDocumentPerformance.html @@ -0,0 +1,279 @@ + + + + +DUUIPipelineDocumentPerformance + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIPipelineDocumentPerformance

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance
+
+
+
+
public class DUUIPipelineDocumentPerformance +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIPipelineDocumentPerformance

      +
      public DUUIPipelineDocumentPerformance(String runKey, + long waitDocumentTime, + org.apache.uima.jcas.JCas jc, + boolean trackErrorDocs)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      shouldTrackErrorDocs

      +
      public boolean shouldTrackErrorDocs()
      +
      Whether to track error documents in the database or not
      +
      +
      Returns:
      +
      true if error documents should be tracked, false otherwise
      +
      +
      +
    • +
    • +
      +

      getRunKey

      +
      public String getRunKey()
      +
      +
    • +
    • +
      +

      getPerformancePoints

      +
      public Vector<DUUIPipelinePerformancePoint> getPerformancePoints()
      +
      +
    • +
    • +
      +

      addData

      +
      public void addData(long durationSerialize, + long durationDeserialize, + long durationAnnotator, + long durationMutexWait, + long durationComponentTotal, + String componentKey, + long serializeSize, + org.apache.uima.jcas.JCas jc, + String error)
      +
      +
    • +
    • +
      +

      getDocumentWaitTime

      +
      public long getDocumentWaitTime()
      +
      +
    • +
    • +
      +

      getTotalTime

      +
      public long getTotalTime()
      +
      +
    • +
    • +
      +

      getDocumentSize

      +
      public long getDocumentSize()
      +
      +
    • +
    • +
      +

      generateComponentPerformance

      +
      public Vector<com.arangodb.entity.BaseDocument> generateComponentPerformance(String docKey)
      +
      +
    • +
    • +
      +

      toArangoDocument

      +
      public com.arangodb.entity.BaseDocument toArangoDocument()
      +
      +
    • +
    • +
      +

      getDocument

      +
      public String getDocument()
      +
      +
    • +
    • +
      +

      getAnnotationTypesCount

      +
      public Map<String,Integer> getAnnotationTypesCount()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIPipelinePerformancePoint.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIPipelinePerformancePoint.html new file mode 100644 index 00000000..818e2625 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/DUUIPipelinePerformancePoint.html @@ -0,0 +1,277 @@ + + + + +DUUIPipelinePerformancePoint + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIPipelinePerformancePoint

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint
+
+
+
+
public class DUUIPipelinePerformancePoint +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUIPipelinePerformancePoint

      +
      public DUUIPipelinePerformancePoint(long durationSerialize, + long durationDeserialize, + long durationAnnotator, + long durationMutexWait, + long durationComponentTotal, + String componentKey, + long serializedSize, + org.apache.uima.jcas.JCas jc, + String error, + String document)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getError

      +
      public String getError()
      +
      +
    • +
    • +
      +

      getKey

      +
      public String getKey()
      +
      +
    • +
    • +
      +

      getDurationAnnotator

      +
      public Long getDurationAnnotator()
      +
      +
    • +
    • +
      +

      getDurationComponentTotal

      +
      public Long getDurationComponentTotal()
      +
      +
    • +
    • +
      +

      getDurationSerialize

      +
      public Long getDurationSerialize()
      +
      +
    • +
    • +
      +

      getSerializedSize

      +
      public Long getSerializedSize()
      +
      +
    • +
    • +
      +

      getDurationDeserialize

      +
      public Long getDurationDeserialize()
      +
      +
    • +
    • +
      +

      getDurationMutexWait

      +
      public Long getDurationMutexWait()
      +
      +
    • +
    • +
      +

      getNumberOfAnnotations

      +
      public Long getNumberOfAnnotations()
      +
      +
    • +
    • +
      +

      getDocumentSize

      +
      public Long getDocumentSize()
      +
      +
    • +
    • +
      +

      getDocument

      +
      public String getDocument()
      +
      +
    • +
    • +
      +

      getProperties

      +
      public Map<String,Object> getProperties()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/IDUUIStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/IDUUIStorageBackend.html new file mode 100644 index 00000000..cabc50f2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/IDUUIStorageBackend.html @@ -0,0 +1,203 @@ + + + + +IDUUIStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUIStorageBackend

+
+
+
+
All Known Implementing Classes:
+
DUUIArangoDBStorageBackend, DUUIMockStorageBackend, DUUIMongoDBStorageBackend, DUUIPostgresSQLStorageBackend, DUUISqliteStorageBackend
+
+
+
public interface IDUUIStorageBackend
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/DUUIArangoComposerConfiguration.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/DUUIArangoComposerConfiguration.html new file mode 100644 index 00000000..7c6f5fa9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/DUUIArangoComposerConfiguration.html @@ -0,0 +1,148 @@ + + + + +DUUIArangoComposerConfiguration + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIArangoComposerConfiguration

+
+
java.lang.Object +
com.arangodb.entity.BaseDocument +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoComposerConfiguration
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class DUUIArangoComposerConfiguration +extends com.arangodb.entity.BaseDocument
+
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.arangodb.entity.BaseDocument

    +addAttribute, equals, getAttribute, getId, getKey, getProperties, getRevision, hashCode, setId, setKey, setProperties, setRevision, toString, updateAttribute
    +
    +

    Methods inherited from class java.lang.Object

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

    Constructor Details

    +
      +
    • +
      +

      DUUIArangoComposerConfiguration

      +
      public DUUIArangoComposerConfiguration(String name, + int workers)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/DUUIArangoDBStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/DUUIArangoDBStorageBackend.html new file mode 100644 index 00000000..f6678f62 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/DUUIArangoDBStorageBackend.html @@ -0,0 +1,328 @@ + + + + +DUUIArangoDBStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
+
+
All Implemented Interfaces:
+
IDUUIStorageBackend
+
+
+
@Deprecated +public class DUUIArangoDBStorageBackend +extends Object +implements IDUUIStorageBackend
+
Deprecated.
+
Is at the moment not at the newest version, therefore you are advised to not use it until it is up to date + again
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/class-use/DUUIArangoComposerConfiguration.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/class-use/DUUIArangoComposerConfiguration.html new file mode 100644 index 00000000..d24ff235 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/class-use/DUUIArangoComposerConfiguration.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoComposerConfiguration + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoComposerConfiguration

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoComposerConfiguration
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/class-use/DUUIArangoDBStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/class-use/DUUIArangoDBStorageBackend.html new file mode 100644 index 00000000..9ffdae1a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/class-use/DUUIArangoDBStorageBackend.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb.DUUIArangoDBStorageBackend
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-summary.html new file mode 100644 index 00000000..e8cd94c9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-summary.html @@ -0,0 +1,103 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-tree.html new file mode 100644 index 00000000..892001cd --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-tree.html @@ -0,0 +1,78 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-use.html new file mode 100644 index 00000000..8528bab4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/arangodb/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIMockStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIMockStorageBackend.html new file mode 100644 index 00000000..31fde091 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIMockStorageBackend.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIMockStorageBackend
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIPipelineDocumentPerformance.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIPipelineDocumentPerformance.html new file mode 100644 index 00000000..38ae8a92 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIPipelineDocumentPerformance.html @@ -0,0 +1,231 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelineDocumentPerformance

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIPipelinePerformancePoint.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIPipelinePerformancePoint.html new file mode 100644 index 00000000..949940d9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/DUUIPipelinePerformancePoint.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.DUUIPipelinePerformancePoint

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/IDUUIStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/IDUUIStorageBackend.html new file mode 100644 index 00000000..f1b80a53 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/class-use/IDUUIStorageBackend.html @@ -0,0 +1,195 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.IDUUIStorageBackend

+
+
Packages that use IDUUIStorageBackend
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/DUUIMongoDBStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/DUUIMongoDBStorageBackend.html new file mode 100644 index 00000000..dbfec1bd --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/DUUIMongoDBStorageBackend.html @@ -0,0 +1,268 @@ + + + + +DUUIMongoDBStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
+
+
+
All Implemented Interfaces:
+
IDUUIStorageBackend
+
+
+
public class DUUIMongoDBStorageBackend +extends Object +implements IDUUIStorageBackend
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/class-use/DUUIMongoDBStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/class-use/DUUIMongoDBStorageBackend.html new file mode 100644 index 00000000..ad45ca8f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/class-use/DUUIMongoDBStorageBackend.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb.DUUIMongoDBStorageBackend
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-summary.html new file mode 100644 index 00000000..e44c0c2c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-summary.html @@ -0,0 +1,101 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-tree.html new file mode 100644 index 00000000..d49ef4e9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-use.html new file mode 100644 index 00000000..750c8bf7 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/mongodb/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-summary.html new file mode 100644 index 00000000..bf648410 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-summary.html @@ -0,0 +1,115 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-tree.html new file mode 100644 index 00000000..10167538 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-tree.html @@ -0,0 +1,81 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-use.html new file mode 100644 index 00000000..ae9084ac --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/package-use.html @@ -0,0 +1,184 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/DUUIPostgresSQLStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/DUUIPostgresSQLStorageBackend.html new file mode 100644 index 00000000..fad3ca61 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/DUUIPostgresSQLStorageBackend.html @@ -0,0 +1,286 @@ + + + + +DUUIPostgresSQLStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUIPostgresSQLStorageBackend

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
+
+
All Implemented Interfaces:
+
IDUUIStorageBackend
+
+
+
@Deprecated +public class DUUIPostgresSQLStorageBackend +extends Object +implements IDUUIStorageBackend
+
Deprecated.
+
Do not use this class it is not finished and just a raw idea about how one could implement a postgres backend
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/class-use/DUUIPostgresSQLStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/class-use/DUUIPostgresSQLStorageBackend.html new file mode 100644 index 00000000..3c8ecb88 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/class-use/DUUIPostgresSQLStorageBackend.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres.DUUIPostgresSQLStorageBackend
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-summary.html new file mode 100644 index 00000000..4307d54a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-summary.html @@ -0,0 +1,101 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-tree.html new file mode 100644 index 00000000..fa38f7ad --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-use.html new file mode 100644 index 00000000..fc51061a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/postgres/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/DUUISqliteStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/DUUISqliteStorageBackend.html new file mode 100644 index 00000000..c2ba5041 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/DUUISqliteStorageBackend.html @@ -0,0 +1,297 @@ + + + + +DUUISqliteStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend
+
+
+
+
All Implemented Interfaces:
+
IDUUIStorageBackend
+
+
+
public class DUUISqliteStorageBackend +extends Object +implements IDUUIStorageBackend
+
Do not use this class it is not finished and just a raw idea about how one could implement a postgres backend
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/class-use/DUUISqliteStorageBackend.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/class-use/DUUISqliteStorageBackend.html new file mode 100644 index 00000000..3d211c2f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/class-use/DUUISqliteStorageBackend.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite.DUUISqliteStorageBackend

+
+
Packages that use DUUISqliteStorageBackend
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-summary.html new file mode 100644 index 00000000..ef227efe --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-summary.html @@ -0,0 +1,103 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-tree.html new file mode 100644 index 00000000..85fa2f47 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-tree.html @@ -0,0 +1,73 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-use.html new file mode 100644 index 00000000..b8c69d88 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/pipeline_storage/sqlite/package-use.html @@ -0,0 +1,83 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationRuleSentences.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationRuleSentences.html new file mode 100644 index 00000000..eb879685 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationRuleSentences.html @@ -0,0 +1,245 @@ + + + + +DUUISegmentationRuleSentences + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationRuleSentences

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences
+
+
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationRule
+
+
+
public class DUUISegmentationRuleSentences +extends Object +implements IDUUISegmentationRule
+
This segmentation rules tries to improve segmentation on sentence borders by forbidding to split "brackets" and similar.
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      WINDOW_SIZE_DEFAULT

      +
      public static final int WINDOW_SIZE_DEFAULT
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUISegmentationRuleSentences

      +
      public DUUISegmentationRuleSentences()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      withWindowSize

      +
      public DUUISegmentationRuleSentences withWindowSize(int windowSize)
      +
      +
    • +
    • +
      +

      canSegment

      +
      public boolean canSegment(boolean resultRuleBefore, + int begin, + int end, + org.apache.uima.jcas.JCas jCas, + IDUUISegmentationStrategy segmentationStrategy)
      +
      Description copied from interface: IDUUISegmentationRule
      +
      Can the CAS be segmented at this position? + Note: Where this rule is applied depends on the implementation of the segmentation strategy, as well as how the output is used.
      +
      +
      Specified by:
      +
      canSegment in interface IDUUISegmentationRule
      +
      Parameters:
      +
      resultRuleBefore - Whether the previous rule led to a segmentation at this position
      +
      begin - The begin offset of the current segment
      +
      end - The possible end offset of the current segment
      +
      jCas - The JCas to be segmented
      +
      segmentationStrategy - The segmentation strategy that is used
      +
      Returns:
      +
      true, if the CAS can be segmented at this position else false
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategy.html new file mode 100644 index 00000000..7b882e96 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategy.html @@ -0,0 +1,273 @@ + + + + +DUUISegmentationStrategy + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationStrategy

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy
+
+
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationStrategy
+
+
+
Direct Known Subclasses:
+
DUUISegmentationStrategyByAnnotation, DUUISegmentationStrategyByAnnotationFast, DUUISegmentationStrategyByDelemiter, DUUISegmentationStrategyNone
+
+
+
public abstract class DUUISegmentationStrategy +extends Object +implements IDUUISegmentationStrategy
+
+
Author:
+
Daniel Baumartz
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUISegmentationStrategy

      +
      public DUUISegmentationStrategy()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      withSegmentationRule

      +
      public DUUISegmentationStrategy withSegmentationRule(IDUUISegmentationRule rule)
      +
      +
      Parameters:
      +
      rule -
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      initialize

      +
      public void initialize(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.UIMAException
      +
      Set the JCas to be processed, this should reset all state
      +
      +
      Specified by:
      +
      initialize in interface IDUUISegmentationStrategy
      +
      Parameters:
      +
      jCas -
      +
      Throws:
      +
      org.apache.uima.UIMAException
      +
      +
      +
    • +
    • +
      +

      finalize

      +
      public void finalize(org.apache.uima.jcas.JCas jCas)
      +
      Get final JCas with the generated annotations
      +
      +
      Specified by:
      +
      finalize in interface IDUUISegmentationStrategy
      +
      Parameters:
      +
      jCas -
      +
      +
      +
    • +
    • +
      +

      getNextSegment

      +
      public abstract org.apache.uima.jcas.JCas getNextSegment()
      +
      Get next segment of the JCas
      +
      +
      Specified by:
      +
      getNextSegment in interface IDUUISegmentationStrategy
      +
      Returns:
      +
      +
      +
    • +
    • +
      +

      merge

      +
      public abstract void merge(org.apache.uima.jcas.JCas jCasSegment)
      +
      Merge the segmented JCas back into the output JCas
      +
      +
      Specified by:
      +
      merge in interface IDUUISegmentationStrategy
      +
      Parameters:
      +
      jCasSegment -
      +
      +
      +
    • +
    • +
      +

      addSegmentationRule

      +
      public void addSegmentationRule(IDUUISegmentationRule rule)
      +
      +
      Specified by:
      +
      addSegmentationRule in interface IDUUISegmentationStrategy
      +
      Parameters:
      +
      rule -
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByAnnotation.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByAnnotation.html new file mode 100644 index 00000000..46786fb6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByAnnotation.html @@ -0,0 +1,411 @@ + + + + +DUUISegmentationStrategyByAnnotation + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationStrategyByAnnotation

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationStrategy
+
+
+
Direct Known Subclasses:
+
DUUISegmentationStrategyBySentence
+
+
+
public class DUUISegmentationStrategyByAnnotation +extends DUUISegmentationStrategy
+
Automatic simple document segmentation by annotation type.
+
+
Author:
+
Daniel Baumartz
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      DUUI_SEGMENTED_REF

      +
      public static final String DUUI_SEGMENTED_REF
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      DUUI_SEGMENTED_POS

      +
      public static final String DUUI_SEGMENTED_POS
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      MAX_ANNOTATIONS_PER_SEGMENT_DEFAULT

      +
      public static final int MAX_ANNOTATIONS_PER_SEGMENT_DEFAULT
      +
      Max number of annotations (eg sentences) per segments
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      MAX_CHARS_PER_SEGMENT_DEFAULT

      +
      public static final int MAX_CHARS_PER_SEGMENT_DEFAULT
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      IGNORE_MISSING_ANNOTATIONS_DEFAULT

      +
      public static final boolean IGNORE_MISSING_ANNOTATIONS_DEFAULT
      +
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • + +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUISegmentationStrategyByAnnotation

      +
      public DUUISegmentationStrategyByAnnotation()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByAnnotationFast.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByAnnotationFast.html new file mode 100644 index 00000000..83398612 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByAnnotationFast.html @@ -0,0 +1,270 @@ + + + + +DUUISegmentationStrategyByAnnotationFast + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationStrategyByAnnotationFast

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationStrategy
+
+
+
public class DUUISegmentationStrategyByAnnotationFast +extends DUUISegmentationStrategy
+
+
See Also:
+
+ +
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByDelemiter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByDelemiter.html new file mode 100644 index 00000000..cd0b2b6d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyByDelemiter.html @@ -0,0 +1,279 @@ + + + + +DUUISegmentationStrategyByDelemiter + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationStrategyByDelemiter

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationStrategy
+
+
+
public class DUUISegmentationStrategyByDelemiter +extends DUUISegmentationStrategy
+
+
See Also:
+
+ +
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyBySentence.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyBySentence.html new file mode 100644 index 00000000..84dd9968 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyBySentence.html @@ -0,0 +1,160 @@ + + + + +DUUISegmentationStrategyBySentence + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationStrategyBySentence

+
+ +
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationStrategy
+
+
+
public class DUUISegmentationStrategyBySentence +extends DUUISegmentationStrategyByAnnotation
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      DUUISegmentationStrategyBySentence

      +
      public DUUISegmentationStrategyBySentence()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyNone.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyNone.html new file mode 100644 index 00000000..4c33b222 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/DUUISegmentationStrategyNone.html @@ -0,0 +1,207 @@ + + + + +DUUISegmentationStrategyNone + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class DUUISegmentationStrategyNone

+
+
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy +
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, IDUUISegmentationStrategy
+
+
+
public class DUUISegmentationStrategyNone +extends DUUISegmentationStrategy
+
No document segmentation
+
+
See Also:
+
+ +
+
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/IDUUISegmentationRule.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/IDUUISegmentationRule.html new file mode 100644 index 00000000..4efeb411 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/IDUUISegmentationRule.html @@ -0,0 +1,157 @@ + + + + +IDUUISegmentationRule + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUISegmentationRule

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
All Known Implementing Classes:
+
DUUISegmentationRuleSentences
+
+
+
public interface IDUUISegmentationRule +extends Serializable
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    boolean
    +
    canSegment(boolean resultRuleBefore, + int begin, + int end, + org.apache.uima.jcas.JCas jCas, + IDUUISegmentationStrategy segmentationStrategy)
    +
    +
    Can the CAS be segmented at this position?
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      canSegment

      +
      boolean canSegment(boolean resultRuleBefore, + int begin, + int end, + org.apache.uima.jcas.JCas jCas, + IDUUISegmentationStrategy segmentationStrategy)
      +
      Can the CAS be segmented at this position? + Note: Where this rule is applied depends on the implementation of the segmentation strategy, as well as how the output is used.
      +
      +
      Parameters:
      +
      resultRuleBefore - Whether the previous rule led to a segmentation at this position
      +
      begin - The begin offset of the current segment
      +
      end - The possible end offset of the current segment
      +
      jCas - The JCas to be segmented
      +
      segmentationStrategy - The segmentation strategy that is used
      +
      Returns:
      +
      true, if the CAS can be segmented at this position else false
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/IDUUISegmentationStrategy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/IDUUISegmentationStrategy.html new file mode 100644 index 00000000..b2388329 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/IDUUISegmentationStrategy.html @@ -0,0 +1,176 @@ + + + + +IDUUISegmentationStrategy + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface IDUUISegmentationStrategy

+
+
+
+
All Superinterfaces:
+
Serializable
+
+
+
All Known Implementing Classes:
+
DUUISegmentationStrategy, DUUISegmentationStrategyByAnnotation, DUUISegmentationStrategyByAnnotationFast, DUUISegmentationStrategyByDelemiter, DUUISegmentationStrategyBySentence, DUUISegmentationStrategyNone
+
+
+
public interface IDUUISegmentationStrategy +extends Serializable
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    + +
     
    +
    void
    +
    finalize(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    org.apache.uima.jcas.JCas
    + +
     
    +
    void
    +
    initialize(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    void
    +
    merge(org.apache.uima.jcas.JCas jCasSegment)
    +
     
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      initialize

      +
      void initialize(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.UIMAException
      +
      +
      Throws:
      +
      org.apache.uima.UIMAException
      +
      +
      +
    • +
    • +
      +

      finalize

      +
      void finalize(org.apache.uima.jcas.JCas jCas)
      +
      +
    • +
    • +
      +

      getNextSegment

      +
      org.apache.uima.jcas.JCas getNextSegment()
      +
      +
    • +
    • +
      +

      merge

      +
      void merge(org.apache.uima.jcas.JCas jCasSegment)
      +
      +
    • +
    • +
      +

      addSegmentationRule

      +
      void addSegmentationRule(IDUUISegmentationRule rule)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationRuleSentences.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationRuleSentences.html new file mode 100644 index 00000000..e55b8095 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationRuleSentences.html @@ -0,0 +1,84 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationRuleSentences

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategy.html new file mode 100644 index 00000000..82d97621 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategy.html @@ -0,0 +1,202 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategy

+
+
Packages that use DUUISegmentationStrategy
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByAnnotation.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByAnnotation.html new file mode 100644 index 00000000..e09cef22 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByAnnotation.html @@ -0,0 +1,105 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByAnnotationFast.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByAnnotationFast.html new file mode 100644 index 00000000..8c34122d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByAnnotationFast.html @@ -0,0 +1,90 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotationFast

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByDelemiter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByDelemiter.html new file mode 100644 index 00000000..d7717dc2 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyByDelemiter.html @@ -0,0 +1,93 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByDelemiter

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyBySentence.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyBySentence.html new file mode 100644 index 00000000..08a105ee --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyBySentence.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyBySentence + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyBySentence

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyBySentence
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyNone.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyNone.html new file mode 100644 index 00000000..4cfd4903 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/DUUISegmentationStrategyNone.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyNone
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/IDUUISegmentationRule.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/IDUUISegmentationRule.html new file mode 100644 index 00000000..76600c0f --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/IDUUISegmentationRule.html @@ -0,0 +1,101 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationRule + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationRule

+
+
Packages that use IDUUISegmentationRule
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/IDUUISegmentationStrategy.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/IDUUISegmentationStrategy.html new file mode 100644 index 00000000..c0e2f8e0 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/class-use/IDUUISegmentationStrategy.html @@ -0,0 +1,125 @@ + + + + +Uses of Interface org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.IDUUISegmentationStrategy

+
+
Packages that use IDUUISegmentationStrategy
+ +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-summary.html new file mode 100644 index 00000000..121957a6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-summary.html @@ -0,0 +1,123 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-tree.html new file mode 100644 index 00000000..20396e2e --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-tree.html @@ -0,0 +1,96 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-use.html new file mode 100644 index 00000000..82ea6e64 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/segmentation/package-use.html @@ -0,0 +1,136 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation

+
+ + +
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationCommentsRemover.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationCommentsRemover.html new file mode 100644 index 00000000..8bc49fc6 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationCommentsRemover.html @@ -0,0 +1,228 @@ + + + + +AnnotationCommentsRemover + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AnnotationCommentsRemover

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class AnnotationCommentsRemover +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AnnotationCommentsRemover

      +
      public AnnotationCommentsRemover()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationMapper.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationMapper.html new file mode 100644 index 00000000..1f875bfa --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationMapper.html @@ -0,0 +1,229 @@ + + + + +AnnotationMapper + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AnnotationMapper

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class AnnotationMapper +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
JCasCollectionReader to read a single article from multiple XML files.
+
+
+
    + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas aJCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AnnotationMapper

      +
      public AnnotationMapper()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas aJCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationRemover.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationRemover.html new file mode 100644 index 00000000..1e959139 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationRemover.html @@ -0,0 +1,192 @@ + + + + +AnnotationRemover + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AnnotationRemover

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationRemover
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class AnnotationRemover +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
JCasCollectionReader to read a single article from multiple XML files.
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas aJCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AnnotationRemover

      +
      public AnnotationRemover()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas aJCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/BorlandExport.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/BorlandExport.html new file mode 100644 index 00000000..3df07e84 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/BorlandExport.html @@ -0,0 +1,293 @@ + + + + +BorlandExport + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasConsumer_ImplBase +
org.dkpro.core.api.io.JCasFileWriter_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class BorlandExport +extends org.dkpro.core.api.io.JCasFileWriter_ImplBase
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +org.dkpro.core.api.io.JCasFileWriter_ImplBase.NamedOutputStream
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    + + +
     
    +
    static final String
    + +
     
    +
    +
    +

    Fields inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +PARAM_COMPRESSION, PARAM_ESCAPE_FILENAME, PARAM_OVERWRITE, PARAM_SINGULAR_TARGET, PARAM_STRIP_EXTENSION, PARAM_TARGET_LOCATION, PARAM_USE_DOCUMENT_ID
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    + +
     
    +
    static String
    +
    getEntities(Set<org.apache.uima.jcas.tcas.Annotation> pSet)
    +
     
    +
    void
    +
    initialize(org.apache.uima.UimaContext context)
    +
     
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +collectionProcessComplete
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      BorlandExport

      +
      public BorlandExport()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      initialize

      +
      public void initialize(org.apache.uima.UimaContext context) + throws org.apache.uima.resource.ResourceInitializationException
      +
      +
      Specified by:
      +
      initialize in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      initialize in class org.apache.uima.fit.component.JCasConsumer_ImplBase
      +
      Throws:
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      +
      +
    • +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    • +
      +

      destroy

      +
      public void destroy()
      +
      +
      Specified by:
      +
      destroy in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      destroy in class org.apache.uima.analysis_component.AnalysisComponent_ImplBase
      +
      +
      +
    • +
    • +
      +

      getEntities

      +
      public static String getEntities(Set<org.apache.uima.jcas.tcas.Annotation> pSet)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/ChangeMetaData.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/ChangeMetaData.html new file mode 100644 index 00000000..785ace6d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/ChangeMetaData.html @@ -0,0 +1,209 @@ + + + + +ChangeMetaData + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class ChangeMetaData +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    boolean
    +
    isNumeric(String sInput)
    +
     
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    + + +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ChangeMetaData

      +
      public ChangeMetaData()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    • +
      +

      isNumeric

      +
      public boolean isNumeric(String sInput)
      +
      +
    • +
    • +
      +

      replaceUmlaut

      +
      public String replaceUmlaut(String sInput)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/CountAnnotations.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/CountAnnotations.html new file mode 100644 index 00000000..4ae263b4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/CountAnnotations.html @@ -0,0 +1,275 @@ + + + + +CountAnnotations + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class CountAnnotations

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasConsumer_ImplBase +
org.dkpro.core.api.io.JCasFileWriter_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class CountAnnotations +extends org.dkpro.core.api.io.JCasFileWriter_ImplBase
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +org.dkpro.core.api.io.JCasFileWriter_ImplBase.NamedOutputStream
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +

    Fields inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +PARAM_COMPRESSION, PARAM_ESCAPE_FILENAME, PARAM_OVERWRITE, PARAM_SINGULAR_TARGET, PARAM_STRIP_EXTENSION, PARAM_TARGET_LOCATION, PARAM_USE_DOCUMENT_ID
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    + +
     
    +
    void
    +
    initialize(org.apache.uima.UimaContext context)
    +
     
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +collectionProcessComplete
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      CountAnnotations

      +
      public CountAnnotations()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      initialize

      +
      public void initialize(org.apache.uima.UimaContext context) + throws org.apache.uima.resource.ResourceInitializationException
      +
      +
      Specified by:
      +
      initialize in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      initialize in class org.apache.uima.fit.component.JCasConsumer_ImplBase
      +
      Throws:
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      +
      +
    • +
    • +
      +

      destroy

      +
      public void destroy()
      +
      +
      Specified by:
      +
      destroy in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      destroy in class org.apache.uima.analysis_component.AnalysisComponent_ImplBase
      +
      +
      +
    • +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/EmptySofaString.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/EmptySofaString.html new file mode 100644 index 00000000..52188bed --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/EmptySofaString.html @@ -0,0 +1,275 @@ + + + + +EmptySofaString + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class EmptySofaString

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasConsumer_ImplBase +
org.dkpro.core.api.io.JCasFileWriter_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class EmptySofaString +extends org.dkpro.core.api.io.JCasFileWriter_ImplBase
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +org.dkpro.core.api.io.JCasFileWriter_ImplBase.NamedOutputStream
    +
    +
  • + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +

    Fields inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +PARAM_COMPRESSION, PARAM_ESCAPE_FILENAME, PARAM_OVERWRITE, PARAM_SINGULAR_TARGET, PARAM_STRIP_EXTENSION, PARAM_TARGET_LOCATION, PARAM_USE_DOCUMENT_ID
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    + +
     
    +
    void
    +
    initialize(org.apache.uima.UimaContext context)
    +
     
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.dkpro.core.api.io.JCasFileWriter_ImplBase

    +collectionProcessComplete
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      EmptySofaString

      +
      public EmptySofaString()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      initialize

      +
      public void initialize(org.apache.uima.UimaContext context) + throws org.apache.uima.resource.ResourceInitializationException
      +
      +
      Specified by:
      +
      initialize in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      initialize in class org.apache.uima.fit.component.JCasConsumer_ImplBase
      +
      Throws:
      +
      org.apache.uima.resource.ResourceInitializationException
      +
      +
      +
    • +
    • +
      +

      destroy

      +
      public void destroy()
      +
      +
      Specified by:
      +
      destroy in interface org.apache.uima.analysis_component.AnalysisComponent
      +
      Overrides:
      +
      destroy in class org.apache.uima.analysis_component.AnalysisComponent_ImplBase
      +
      +
      +
    • +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveAnnotations.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveAnnotations.html new file mode 100644 index 00000000..4b389923 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveAnnotations.html @@ -0,0 +1,191 @@ + + + + +RemoveAnnotations + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RemoveAnnotations

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveAnnotations
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class RemoveAnnotations +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RemoveAnnotations

      +
      public RemoveAnnotations()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveMetaData.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveMetaData.html new file mode 100644 index 00000000..20d02667 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveMetaData.html @@ -0,0 +1,191 @@ + + + + +RemoveMetaData + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveMetaData
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class RemoveMetaData +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RemoveMetaData

      +
      public RemoveMetaData()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveOverlappingAnnotations.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveOverlappingAnnotations.html new file mode 100644 index 00000000..c539b279 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RemoveOverlappingAnnotations.html @@ -0,0 +1,228 @@ + + + + +RemoveOverlappingAnnotations + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RemoveOverlappingAnnotations

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class RemoveOverlappingAnnotations +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RemoveOverlappingAnnotations

      +
      public RemoveOverlappingAnnotations()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RenameMetaDataGerParCor.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RenameMetaDataGerParCor.html new file mode 100644 index 00000000..7d2f879d --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/RenameMetaDataGerParCor.html @@ -0,0 +1,228 @@ + + + + +RenameMetaDataGerParCor + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RenameMetaDataGerParCor

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class RenameMetaDataGerParCor +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RenameMetaDataGerParCor

      +
      public RenameMetaDataGerParCor()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/SetLanguage.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/SetLanguage.html new file mode 100644 index 00000000..53deb635 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/SetLanguage.html @@ -0,0 +1,228 @@ + + + + +SetLanguage + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class SetLanguage +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      SetLanguage

      +
      public SetLanguage()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/SimpleSegmenter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/SimpleSegmenter.html new file mode 100644 index 00000000..8c5a6532 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/SimpleSegmenter.html @@ -0,0 +1,228 @@ + + + + +SimpleSegmenter + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SimpleSegmenter

+
+
java.lang.Object +
org.apache.uima.analysis_component.AnalysisComponent_ImplBase +
org.apache.uima.analysis_component.Annotator_ImplBase +
org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
org.apache.uima.fit.component.JCasAnnotator_ImplBase +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter
+
+
+
+
+
+
+
+
All Implemented Interfaces:
+
org.apache.uima.analysis_component.AnalysisComponent
+
+
+
public class SimpleSegmenter +extends org.apache.uima.fit.component.JCasAnnotator_ImplBase
+
+
+
    + +
  • +
    +

    Field Summary

    +
    Fields
    +
    +
    Modifier and Type
    +
    Field
    +
    Description
    +
    static final String
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
     
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    process(org.apache.uima.jcas.JCas jCas)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.apache.uima.fit.component.JCasAnnotator_ImplBase

    +initialize
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.JCasAnnotator_ImplBase

    +getRequiredCasInterface, process
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.Annotator_ImplBase

    +getCasInstancesRequired, hasNext, next
    +
    +

    Methods inherited from class org.apache.uima.analysis_component.AnalysisComponent_ImplBase

    +batchProcessComplete, collectionProcessComplete, destroy, reconfigure, setResultSpecification
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Field Details

    + +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      SimpleSegmenter

      +
      public SimpleSegmenter()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      process

      +
      public void process(org.apache.uima.jcas.JCas jCas) + throws org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      Specified by:
      +
      process in class org.apache.uima.analysis_component.JCasAnnotator_ImplBase
      +
      Throws:
      +
      org.apache.uima.analysis_engine.AnalysisEngineProcessException
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/Timer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/Timer.html new file mode 100644 index 00000000..3e0dac2b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/Timer.html @@ -0,0 +1,187 @@ + + + + +Timer + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
+
+
+
public class Timer +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Timer

      +
      public Timer()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      start

      +
      public void start()
      +
      +
    • +
    • +
      +

      stop

      +
      public void stop()
      +
      +
    • +
    • +
      +

      getDuration

      +
      public long getDuration()
      +
      +
    • +
    • +
      +

      restart

      +
      public void restart()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/XMLFormatter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/XMLFormatter.html new file mode 100644 index 00000000..819406e5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/XMLFormatter.html @@ -0,0 +1,209 @@ + + + + +XMLFormatter + + + + + + + + + + + + + + + +
+ +
+
+ + +
java.lang.Object +
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
+
+
+
public class XMLFormatter +extends Object
+
Pretty-prints xml, supplied as a string. + + eg. +
+ String formattedXml = new XmlFormatter().format("<tag><nested>hello</nested></tag>");
+ 
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      XMLFormatter

      +
      public XMLFormatter()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      format

      +
      public static String format(String unformattedXml)
      +
      +
    • +
    • +
      +

      printDocument

      +
      public static String printDocument(String unformattedXml) + throws IOException, +TransformerException
      +
      +
      Throws:
      +
      IOException
      +
      TransformerException
      +
      +
      +
    • +
    • +
      +

      getString

      +
      public static String getString(org.apache.uima.cas.CAS jCas)
      +
      +
    • +
    • +
      +

      getPrettyString

      +
      public static String getPrettyString(org.apache.uima.cas.CAS cas)
      +
      +
    • +
    • +
      +

      getPrettyString

      +
      public static String getPrettyString(org.apache.uima.jcas.JCas jcas)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationCommentsRemover.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationCommentsRemover.html new file mode 100644 index 00000000..4bab56de --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationCommentsRemover.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationCommentsRemover
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationMapper.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationMapper.html new file mode 100644 index 00000000..603b678b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationMapper.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationMapper
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationRemover.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationRemover.html new file mode 100644 index 00000000..4a8f36f4 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/AnnotationRemover.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationRemover + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationRemover

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.AnnotationRemover
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/BorlandExport.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/BorlandExport.html new file mode 100644 index 00000000..dd217ced --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/BorlandExport.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.BorlandExport
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/ChangeMetaData.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/ChangeMetaData.html new file mode 100644 index 00000000..5233eb80 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/ChangeMetaData.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.ChangeMetaData
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/CountAnnotations.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/CountAnnotations.html new file mode 100644 index 00000000..3dd34fc1 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/CountAnnotations.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.CountAnnotations
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/EmptySofaString.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/EmptySofaString.html new file mode 100644 index 00000000..17ab2d9e --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/EmptySofaString.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.EmptySofaString
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveAnnotations.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveAnnotations.html new file mode 100644 index 00000000..81ca8cf5 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveAnnotations.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveAnnotations + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveAnnotations

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveAnnotations
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveMetaData.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveMetaData.html new file mode 100644 index 00000000..500549fc --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveMetaData.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveMetaData + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveMetaData

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveMetaData
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveOverlappingAnnotations.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveOverlappingAnnotations.html new file mode 100644 index 00000000..b6058767 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RemoveOverlappingAnnotations.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RemoveOverlappingAnnotations
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RenameMetaDataGerParCor.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RenameMetaDataGerParCor.html new file mode 100644 index 00000000..ffaf4910 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/RenameMetaDataGerParCor.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.RenameMetaDataGerParCor
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/SetLanguage.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/SetLanguage.html new file mode 100644 index 00000000..59cd58e9 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/SetLanguage.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SetLanguage
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/SimpleSegmenter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/SimpleSegmenter.html new file mode 100644 index 00000000..6e5d2f6b --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/SimpleSegmenter.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.SimpleSegmenter
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/Timer.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/Timer.html new file mode 100644 index 00000000..084c3a4c --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/Timer.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/XMLFormatter.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/XMLFormatter.html new file mode 100644 index 00000000..440c4456 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/class-use/XMLFormatter.html @@ -0,0 +1,59 @@ + + + + +Uses of Class org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-summary.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-summary.html new file mode 100644 index 00000000..63fe369a --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-summary.html @@ -0,0 +1,129 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.tools + + + + + + + + + + + + + + + +
+ +
+
+
+

Package org.texttechnologylab.DockerUnifiedUIMAInterface.tools

+
+
+
package org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
+ +
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-tree.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-tree.html new file mode 100644 index 00000000..143eb590 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-tree.html @@ -0,0 +1,111 @@ + + + + +org.texttechnologylab.DockerUnifiedUIMAInterface.tools Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package org.texttechnologylab.DockerUnifiedUIMAInterface.tools

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.apache.uima.analysis_component.AnalysisComponent_ImplBase (implements org.apache.uima.analysis_component.AnalysisComponent) +
        +
      • org.apache.uima.analysis_component.Annotator_ImplBase +
          +
        • org.apache.uima.analysis_component.JCasAnnotator_ImplBase +
            +
          • org.apache.uima.fit.component.JCasAnnotator_ImplBase + +
          • +
          • org.apache.uima.fit.component.JCasConsumer_ImplBase +
              +
            • org.dkpro.core.api.io.JCasFileWriter_ImplBase + +
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.tools.Timer
    • +
    • org.texttechnologylab.DockerUnifiedUIMAInterface.tools.XMLFormatter
    • +
    +
  • +
+
+
+
+
+ + diff --git a/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-use.html b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-use.html new file mode 100644 index 00000000..d2859858 --- /dev/null +++ b/docs/javadoc/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/package-use.html @@ -0,0 +1,59 @@ + + + + +Uses of Package org.texttechnologylab.DockerUnifiedUIMAInterface.tools + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
org.texttechnologylab.DockerUnifiedUIMAInterface.tools

+
+No usage of org.texttechnologylab.DockerUnifiedUIMAInterface.tools
+
+
+ + diff --git a/docs/javadoc/overview-summary.html b/docs/javadoc/overview-summary.html new file mode 100644 index 00000000..f385d8a6 --- /dev/null +++ b/docs/javadoc/overview-summary.html @@ -0,0 +1,26 @@ + + + + +Generated Documentation (Untitled) + + + + + + + + + + + +
+ +

index.html

+
+ + diff --git a/docs/javadoc/overview-tree.html b/docs/javadoc/overview-tree.html new file mode 100644 index 00000000..99e572d7 --- /dev/null +++ b/docs/javadoc/overview-tree.html @@ -0,0 +1,353 @@ + + + + +Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+ +
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ + diff --git a/docs/javadoc/package-search-index.js b/docs/javadoc/package-search-index.js new file mode 100644 index 00000000..b7607d49 --- /dev/null +++ b/docs/javadoc/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.composer"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation"},{"l":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/javadoc/script-dir/jquery-3.6.1.min.js b/docs/javadoc/script-dir/jquery-3.6.1.min.js new file mode 100644 index 00000000..2c69bc90 --- /dev/null +++ b/docs/javadoc/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/docs/javadoc/script.js b/docs/javadoc/script.js new file mode 100644 index 00000000..864989cf --- /dev/null +++ b/docs/javadoc/script.js @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); + elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} + +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + contentDiv.addEventListener("scroll", function(e) { + var timeoutID; + if (!timeoutID) { + timeoutID = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + timeoutID = null; + }, 100); + } + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/docs/javadoc/search.js b/docs/javadoc/search.js new file mode 100644 index 00000000..db3b2f4a --- /dev/null +++ b/docs/javadoc/search.js @@ -0,0 +1,354 @@ +/* + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var noResult = {l: "No results found"}; +var loading = {l: "Loading search index..."}; +var catModules = "Modules"; +var catPackages = "Packages"; +var catTypes = "Classes and Interfaces"; +var catMembers = "Members"; +var catSearchTags = "Search Tags"; +var highlight = "$&"; +var searchPattern = ""; +var fallbackPattern = ""; +var RANKING_THRESHOLD = 2; +var NO_MATCH = 0xffff; +var MIN_RESULTS = 3; +var MAX_RESULTS = 500; +var UNNAMED = ""; +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(item, matcher, fallbackMatcher) { + var escapedItem = escapeHtml(item); + var highlighted = escapedItem.replace(matcher, highlight); + if (highlighted === escapedItem) { + highlighted = escapedItem.replace(fallbackMatcher, highlight) + } + return highlighted; +} +function getURLPrefix(ui) { + var urlPrefix=""; + var slash = "/"; + if (ui.item.category === catModules) { + return ui.item.l + slash; + } else if (ui.item.category === catPackages && ui.item.m) { + return ui.item.m + slash; + } else if (ui.item.category === catTypes || ui.item.category === catMembers) { + if (ui.item.m) { + urlPrefix = ui.item.m + slash; + } else { + $.each(packageSearchIndex, function(index, item) { + if (item.m && ui.item.p === item.l) { + urlPrefix = item.m + slash; + } + }); + } + } + return urlPrefix; +} +function createSearchPattern(term) { + var pattern = ""; + var isWordToken = false; + term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { + if (index > 0) { + // whitespace between identifiers is significant + pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; + } + var tokens = w.split(/(?=[A-Z,.()<>[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + if (s === "") { + continue; + } + pattern += $.ui.autocomplete.escapeRegex(s); + isWordToken = /\w$/.test(s); + if (isWordToken) { + pattern += "([a-z0-9_$<>\\[\\]]*?)"; + } + } + }); + return pattern; +} +function createMatcher(pattern, flags) { + var isCamelCase = /[A-Z]/.test(pattern); + return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); +} +var watermark = 'Search'; +$(function() { + var search = $("#search-input"); + var reset = $("#reset-button"); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + search.val(watermark).addClass('watermark'); + search.blur(function() { + if ($(this).val().length === 0) { + $(this).val(watermark).addClass('watermark'); + } + }); + search.on('click keydown paste', function() { + if ($(this).val() === watermark) { + $(this).val('').removeClass('watermark'); + } + }); + reset.click(function() { + search.val('').focus(); + }); + search.focus()[0].setSelectionRange(0, 0); +}); +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); + }, + _renderMenu: function(ul, items) { + var rMenu = this; + var currentCategory = ""; + rMenu.menu.bindings = $(); + $.each(items, function(index, item) { + var li; + if (item.category && item.category !== currentCategory) { + ul.append("
  • " + item.category + "
  • "); + currentCategory = item.category; + } + li = rMenu._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", item.category + " : " + item.l); + li.attr("class", "result-item"); + } else { + li.attr("aria-label", item.l); + li.attr("class", "result-item"); + } + }); + }, + _renderItem: function(ul, item) { + var label = ""; + var matcher = createMatcher(escapeHtml(searchPattern), "g"); + var fallbackMatcher = new RegExp(fallbackPattern, "gi") + if (item.category === catModules) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catPackages) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catTypes) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catMembers) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); + } else if (item.category === catSearchTags) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else { + label = item.l; + } + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + if (item.category === catSearchTags && item.h) { + if (item.d) { + div.html(label + " (" + item.h + ")
    " + + item.d + "
    "); + } else { + div.html(label + " (" + item.h + ")"); + } + } else { + if (item.m) { + div.html(item.m + "/" + label); + } else { + div.html(label); + } + } + return li; + } +}); +function rankMatch(match, category) { + if (!match) { + return NO_MATCH; + } + var index = match.index; + var input = match.input; + var leftBoundaryMatch = 2; + var periferalMatch = 0; + // make sure match is anchored on a left word boundary + if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { + leftBoundaryMatch = 0; + } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { + leftBoundaryMatch = 1; + } + var matchEnd = index + match[0].length; + var leftParen = input.indexOf("("); + var endOfName = leftParen > -1 ? leftParen : input.length; + // exclude peripheral matches + if (category !== catModules && category !== catSearchTags) { + var delim = category === catPackages ? "/" : "."; + if (leftParen > -1 && leftParen < index) { + periferalMatch += 2; + } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { + periferalMatch += 2; + } + } + var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match + for (var i = 1; i < match.length; i++) { + // lower ranking if parts of the name are missing + if (match[i]) + delta += match[i].length; + } + if (category === catTypes) { + // lower ranking if a type name contains unmatched camel-case parts + if (/[A-Z]/.test(input.substring(matchEnd))) + delta += 5; + if (/[A-Z]/.test(input.substring(0, index))) + delta += 5; + } + return leftBoundaryMatch + periferalMatch + (delta / 200); + +} +function doSearch(request, response) { + var result = []; + searchPattern = createSearchPattern(request.term); + fallbackPattern = createSearchPattern(request.term.toLowerCase()); + if (searchPattern === "") { + return this.close(); + } + var camelCaseMatcher = createMatcher(searchPattern, ""); + var fallbackMatcher = new RegExp(fallbackPattern, "i"); + + function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { + if (indexArray) { + var newResults = []; + $.each(indexArray, function (i, item) { + item.category = category; + var ranking = rankMatch(matcher.exec(nameFunc(item)), category); + if (ranking < RANKING_THRESHOLD) { + newResults.push({ranking: ranking, item: item}); + } + return newResults.length <= MAX_RESULTS; + }); + return newResults.sort(function(e1, e2) { + return e1.ranking - e2.ranking; + }).map(function(e) { + return e.item; + }); + } + return []; + } + function searchIndex(indexArray, category, nameFunc) { + var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); + result = result.concat(primaryResults); + if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { + var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); + result = result.concat(secondaryResults.filter(function (item) { + return primaryResults.indexOf(item) === -1; + })); + } + } + + searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); + searchIndex(packageSearchIndex, catPackages, function(item) { + return (item.m && request.term.indexOf("/") > -1) + ? (item.m + "/" + item.l) : item.l; + }); + searchIndex(typeSearchIndex, catTypes, function(item) { + return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; + }); + searchIndex(memberSearchIndex, catMembers, function(item) { + return request.term.indexOf(".") > -1 + ? item.p + "." + item.c + "." + item.l : item.l; + }); + searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); + + if (!indexFilesLoaded()) { + updateSearchResults = function() { + doSearch(request, response); + } + result.unshift(loading); + } else { + updateSearchResults = function() {}; + } + response(result); +} +$(function() { + $("#search-input").catcomplete({ + minLength: 1, + delay: 300, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push(noResult); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.category) { + var url = getURLPrefix(ui); + if (ui.item.category === catModules) { + url += "module-summary.html"; + } else if (ui.item.category === catPackages) { + if (ui.item.u) { + url = ui.item.u; + } else { + url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (ui.item.category === catTypes) { + if (ui.item.u) { + url = ui.item.u; + } else if (ui.item.p === UNNAMED) { + url += ui.item.l + ".html"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; + } + } else if (ui.item.category === catMembers) { + if (ui.item.p === UNNAMED) { + url += ui.item.c + ".html" + "#"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; + } + if (ui.item.u) { + url += ui.item.u; + } else { + url += ui.item.l; + } + } else if (ui.item.category === catSearchTags) { + url += ui.item.u; + } + if (top !== window) { + parent.classFrame.location = pathtoroot + url; + } else { + window.location.href = pathtoroot + url; + } + $("#search-input").focus(); + } + } + }); +}); diff --git a/docs/javadoc/serialized-form.html b/docs/javadoc/serialized-form.html new file mode 100644 index 00000000..6a311ae2 --- /dev/null +++ b/docs/javadoc/serialized-form.html @@ -0,0 +1,281 @@ + + + + +Serialized Form + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Serialized Form

    +
    + +
    +
    +
    + + diff --git a/docs/javadoc/stylesheet.css b/docs/javadoc/stylesheet.css new file mode 100644 index 00000000..4a576bd2 --- /dev/null +++ b/docs/javadoc/stylesheet.css @@ -0,0 +1,869 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:#bb7a2a; +} +a[name] { + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; +} +h4 { + font-size:15px; +} +h5 { + font-size:14px; +} +h6 { + font-size:13px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +.summary-table dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size: 14px; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.clear { + clear:both; + height:0; + overflow:hidden; +} +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:11px; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* + * Styles for navigation bar. + */ +@media screen { + .flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + .flex-header { + flex: 0 0 auto; + } + .flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + min-height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.sub-nav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.sub-nav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list { + padding-top:5px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0 0 0 0; + padding:5px 6px; + clear:none; +} +.nav-list-search label { + position:relative; + right:-16px; +} +ul.sub-nav-list li { + list-style:none; + float:left; + padding-top:10px; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.nav-bar-cell1-rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header and footer. + */ +.title { + color:#2c4557; + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.see-list, ul.see-list-long { + padding-left: 0; + list-style: none; +} +ul.see-list li { + display: inline; +} +ul.see-list li:not(:last-child):after, +ul.see-list-long li:not(:last-child):after { + content: ", "; + white-space: pre-wrap; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0; + padding-top:10px; + padding-left:1px; + margin:0; + white-space:pre; +} +.caption a:link, .caption a:visited { + color:#1f389c; +} +.caption a:hover, +.caption a:active { + color:#FFFFFF; +} +.caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; +} +div.table-tabs > button.active-table-tab { + background: #F8981D; + color: #253441; +} +div.table-tabs > button.table-tab { + background: #4D7A97; + color: #FFFFFF; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +@media screen and (max-width: 800px) { + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-summary .col-last { + grid-column-end: span 2; + } +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:#dee3e9; + font-weight: bold; +} +.col-first, .col-first { + font-size:13px; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:13px; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited, +.constant-values-container a:link, .constant-values-container a:visited, +.all-classes-container a:link, .all-classes-container a:visited, +.all-packages-container a:link, .all-packages-container a:visited { + font-weight:bold; +} +.table-sub-heading-color { + background-color:#EEEEFF; +} +.even-row-color, .even-row-color .table-header { + background-color:#FFFFFF; +} +.odd-row-color, .odd-row-color .table-header { + background-color:#EEEEEF; +} +/* + * Styles for contents. + */ +.deprecated-content { + margin:0; + padding:10px 0; +} +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:0 10px 5px 0; + color:#474747; +} +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.result-item { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; + background-color: #FFFFFF; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.result-highlight { + font-weight:bold; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +#search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; + width:400px; +} +#reset-button { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:16px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:yellow; +} +.module-graph span { + display:none; + position:absolute; +} +.module-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0px 20px 5px 10px; + border: 1px solid #ededed; + background-color: #f8f8f8; +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +span.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} + +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak font sizes and paddings for small screens. + */ +@media screen and (max-width: 1050px) { + #search-input { + width: 300px; + } +} +@media screen and (max-width: 800px) { + #search-input { + width: 200px; + } + .top-nav, + .bottom-nav { + font-size: 11px; + padding-top: 6px; + } + .sub-nav { + font-size: 11px; + } + .about-language { + padding-right: 16px; + } + ul.nav-list li, + .sub-nav .nav-list-search { + padding: 6px; + } + ul.sub-nav-list li { + padding-top: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 500px) { + #search-input { + width: 150px; + } + .top-nav, + .bottom-nav { + font-size: 10px; + } + .sub-nav { + font-size: 10px; + } + .about-language { + font-size: 10px; + padding-right: 12px; + } +} diff --git a/docs/javadoc/tag-search-index.js b/docs/javadoc/tag-search-index.js new file mode 100644 index 00000000..bf10aaf6 --- /dev/null +++ b/docs/javadoc/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [{"l":"Constant Field Values","h":"","u":"constant-values.html"},{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/javadoc/type-search-index.js b/docs/javadoc/type-search-index.js new file mode 100644 index 00000000..68953104 --- /dev/null +++ b/docs/javadoc/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","l":"AdvancedProgressMeter"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"AnnotationCommentsRemover"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"AnnotationMapper"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"AnnotationRemover"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"AsyncCollectionReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"BorlandExport"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"AsyncCollectionReader.Builder"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIDocumentReader.Builder"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"ByteReadFuture"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"ChangeMetaData"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIDockerDriver.Component"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIKubernetesDriver.Component"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIRemoteDriver.Component"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUISwarmDriver.Component"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIUIMADriver.Component"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIDockerDriver.ComponentInstance"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIKubernetesDriver.ComponentInstance"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"CountAnnotations"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIComposer.DebugLevel"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"AsyncCollectionReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIFileReader.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIFileReaderLazy.DUUI_ASYNC_COLLECTION_READER_SAMPLE_MODE"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","l":"DUUIArangoComposerConfiguration"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.arangodb","l":"DUUIArangoDBStorageBackend"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"DUUIAsynchronousProcessor"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"DUUICollectionDBReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"DUUICollectionReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIComposer"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUICompressionHelper"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"DUUICustomRestricedLuaJavaLib"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIDockerDriver"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIDockerInterface"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUIDocument"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"DUUIDocumentDecoder"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIDocumentReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUIDropboxDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","l":"DUUIEvent"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIFallbackCommunicationLayer"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIFileReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIFileReaderLazy"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"IDUUIFolderPickerApi.DUUIFolder"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIGerParCorReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUIGoogleDriveDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","l":"DUUIHTMLGoogleSERPReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","l":"DUUIHTMLReadabilityReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUIInputStream"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIKubernetesDriver"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUILinearExecutionPlanGenerator.DUUILinearExecutionPlan"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUILinearExecutionPlanGenerator"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUILocalDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"DUUILuaCommunicationLayer"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"DUUILuaCompiledFile"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"DUUILuaContext"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"DUUILuaSandbox"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"DUUILuaUtils"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUIMinioDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","l":"DUUIMockStorageBackend"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUIMongoDBDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.mongodb","l":"DUUIMongoDBStorageBackend"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","l":"DUUIMonitor"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"DUUINextcloudDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIParallelFileReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIPipelineAnnotationComponent"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIPipelineComponent"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIPipelineComponentJoinStrategy"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIPipelineDescription"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","l":"DUUIPipelineDocumentPerformance"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","l":"DUUIPipelinePerformancePoint"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.postgres","l":"DUUIPostgresSQLStorageBackend"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIRemoteDriver"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUISegmentationReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationRuleSentences"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationStrategy"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationStrategyByAnnotation"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationStrategyByAnnotationFast"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationStrategyByDelemiter"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationStrategyBySentence"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"DUUISegmentationStrategyNone"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.composer","l":"DUUISegmentedWorker"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage.sqlite","l":"DUUISqliteStorageBackend"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","l":"DUUIStatus"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUISwarmDriver"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIUIMADriver"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","l":"DUUIWebsocketAlt"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader","l":"DUUIWikipediaExtractorReader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"EmptySofaString"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","l":"GerParCorWriter"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","l":"GZIPLocalFile"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.google","l":"HTMLGoogleSERPLoader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability","l":"HTMLReadabilityLoader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"IDUUICommunicationLayer"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","l":"IDUUIConnectionHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"IDUUIDocumentHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"IDUUIDriverInterface"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"IDUUIExecutionPlan"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"IDUUIExecutionPlanGenerator"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.document_handler","l":"IDUUIFolderPickerApi"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","l":"IDUUIFormat"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"IDUUIInstantiatedPipelineComponent"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"IDUUIPipelineComponent"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"IDUUISegmentationRule"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation","l":"IDUUISegmentationStrategy"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.pipeline_storage","l":"IDUUIStorageBackend"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","l":"IDUUITransport"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"IDUUIUrlAccessible"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.driver","l":"DUUIUIMADriver.InstantiatedComponent"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.transport","l":"LocalFile"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.lua","l":"LuaConsts"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","l":"MongoDBConfig"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection.mongodb","l":"MongoDBConnectionHandler"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface","l":"DUUIComposer.PipelinePart"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"ProgressMeter"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"RemoveAnnotations"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"RemoveMetaData"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"RemoveOverlappingAnnotations"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"RenameMetaDataGerParCor"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.monitoring","l":"DUUIEvent.Sender"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io","l":"SerializeJSON"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"SetLanguage"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"SimpleSegmenter"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"Timer"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.writer","l":"TTLabXmiWriter"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","l":"TxtLoader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.connection","l":"WebsocketClient"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.io.format","l":"XmiLoader"},{"p":"org.texttechnologylab.DockerUnifiedUIMAInterface.tools","l":"XMLFormatter"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/jekyll-theme-architect.gemspec b/docs/jekyll-theme-architect.gemspec index 6fa65dd7..6a673ebf 100644 --- a/docs/jekyll-theme-architect.gemspec +++ b/docs/jekyll-theme-architect.gemspec @@ -21,5 +21,5 @@ Gem::Specification.new do |s| s.add_development_dependency "html-proofer", "~> 3.0" s.add_development_dependency "rubocop-github", "~> 0.16" s.add_development_dependency "w3c_validators", "~> 1.3" - s.add_runtime_dependency 'kramdown', '~> 2.0' + s.add_runtime_dependency 'kramdown', '~> 2.4.0' end diff --git a/docs/tutorial/FactChecking.md b/docs/tutorial/FactChecking.md index 394e68f0..c28d6c0a 100644 --- a/docs/tutorial/FactChecking.md +++ b/docs/tutorial/FactChecking.md @@ -1,12 +1,14 @@ --- layout: default --- -# Integration of Fact-Checking Step by Step +# Integration of Fact-Checking The Integration for this example is with python, because the fact-checking tool is implemented in python. In this section, we will explain how to integrate a fact-checking tool into the DUUI pipeline step by step. The fact-checking module is a part of the DUUI pipeline that is responsible for calculating how strong the claim is supported by the fact. We use UniEval ([Zhong et al. 2022](https://aclanthology.org/2022.emnlp-main.131/)) as the tool, which allows us to check whether a claim is supported by a fact. +The full example code can be found in the [GitHub repository](https://github.com/texttechnologylab/duui-uima/tree/main/duui-FactChecking). + ## Typeystem for Fact-Checking The first step is to define the typesystem for the fact-checking tool, if the needed types are not already defined in the typesystem repository ([UIMATypeSystem](https://github.com/texttechnologylab/UIMATypeSystem)). The typesystem for the fact-checking tool is defined in the following XML format: @@ -678,3 +680,11 @@ function deserialize(inputCas, inputStream) end end ``` + + + +# Author + +[Mevlüt Bağcı](https://www.texttechnologylab.org/team/mevl%C3%BCt-bagci/) + +If you have any questions or need more information, feel free to reach out to the author. diff --git a/docs/tutorial/HateCheck.md b/docs/tutorial/HateCheck.md index cf69c85d..e073207e 100644 --- a/docs/tutorial/HateCheck.md +++ b/docs/tutorial/HateCheck.md @@ -1,33 +1,29 @@ --- layout: default --- -# Integration of HateCheck into the DUUI pipeline +# Integration of HateCheck The Integration for this example is with python, because the HateCheck tool is implemented in python. In this section, we will explain how to integrate a HateCheck tool into the DUUI pipeline step by step. The HateCheck module is a part of the DUUI pipeline that is responsible for calculating the hate speech score of a given text. +The full example code can be found in the [GitHub repository](https://github.com/texttechnologylab/duui-uima/tree/main/duui-Hate). + ## Typeystem for HateCheck The first step is to define the typesystem for the HatCheck tool, if the needed types are not already defined in the typesystem repository ([UIMATypeSystem](https://github.com/texttechnologylab/UIMATypeSystem)). The typesystem for the HateCheck tool is defined in the following XML format: ```xml - TypeSystemFactChecking - - 1.0 - - - org.texttechnologylab.annotation.Hate @@ -37,21 +33,18 @@ The typesystem for the HateCheck tool is defined in the following XML format: uima.tcas.Annotation - Hate Probability of Hate uima.cas.Double - NonHate Probability of not Hate uima.cas.Double - model @@ -721,3 +714,10 @@ public class MultiTestHate { } } ``` + + +# Author + +[Mevlüt Bağcı](https://www.texttechnologylab.org/team/mevl%C3%BCt-bagci/) + +If you have any questions or need more information, feel free to reach out to the author. diff --git a/docs/tutorial/Sentiment.md b/docs/tutorial/Sentiment.md index 539f55d9..129b8bc1 100644 --- a/docs/tutorial/Sentiment.md +++ b/docs/tutorial/Sentiment.md @@ -2,7 +2,7 @@ layout: default --- -# Integration of a Sentiment Tool in DUUI Step by Step +# Integration of a Sentiment Tool In this section, we will explain how to integrate a sentiment analysis tool into DUUI step by step. The Integration in this example is developed using the Python programming language, because the underlying sentiment tool is also implemented in Python. @@ -336,3 +336,9 @@ docker tag \ This automatically builds the Docker image and generates a tag for the latest version. The image can then be pushed to the Text Technology Lab Docker registry. Finally, see the Java JUnit tests for the sentiment tool in the file `duui-transformers-sentiment-example/src/test/java/org/hucompute/textimager/uima/transformers/sentiment/CardiffnlpTwitterXlmRobertaBaseSentimentTest.java` in the repository. The tests are used to check the functionality of the tool and to ensure that it works as expected. + +# Author + +[Daniel Baumartz](https://www.texttechnologylab.org/team/daniel-baumartz/) + +If you have any questions or need more information, feel free to reach out to the author. diff --git a/docs/tutorial/Tutorial.md b/docs/tutorial/Tutorial.md index cc3bceed..cdf469be 100644 --- a/docs/tutorial/Tutorial.md +++ b/docs/tutorial/Tutorial.md @@ -7,7 +7,8 @@ layout: default This documentation is designed as a tutorial for the creation and integration of new NLP analysis tools to be used within the **Docker Unified UIMA Interface** (short DUUI). For this purpose, the tutorial is structured in two parts: a general part describing DUUI and the global context as well as several concrete examples for creating your own components based on existing DUUI components. -> [!NOTE] +> **Note** +> > We recommend reading the following publication before using the tutorial: [![EMNLP-2023](http://img.shields.io/badge/paper-FindingsEMNLP--2023-fb44ce.svg)](https://aclanthology.org/2023.findings-emnlp.29) # DUUI in a nutshell @@ -31,7 +32,8 @@ DUUI is implemented in Java and can be used in this way, whereby a [web-based so Further information as well as the DUUI project, which can be reused under the ![GitHub License](https://img.shields.io/github/license/Texttechnologylab/DockerUnifiedUIMAInterface), can be found in the [![publication](http://img.shields.io/badge/paper-FindingsEMNLP--2023-fb44ce.svg)](https://aclanthology.org/2023.findings-emnlp.29) as well as in the [![GitHub repository](https://img.shields.io/badge/GitHub_repository-blue)](https://github.com/texttechnologylab/DockerUnifiedUIMAInterface). -> [!IMPORTANT] +> **Important** +> > For using DUUI as a Java application, a JRE of at least 17 is required. ## For whom is DUUI? @@ -50,103 +52,42 @@ TypeSystem | Lua-Script | Programm | --- | --- | --- | The TypeSystem (as part of UIMA) defines the schema of the types of annotations which are created by the component. This TypeSystem is necessary for DUUI to understand the annotated document. | The Lua script enables any component to (de)serialize annotations from a UIMA document in a programming language-independent approach without the need for native UIMA support in the respective programming language. | The analysis is a script / program which operates as a REST interface and uses or reuses an existing analysis or an existing program to perform the actual NLP analysis. | -> [!TIP] +> **Tip** +> > Generally, the complete [TypeSystem from Texttechnologylab](https://github.com/texttechnologylab/UIMATypeSystem) can be integrated in a DUUI tool. But this normally contains far more Types or Typesytems than might be needed for a specific tool. However, the idea of DUUI is that each component only returns the TypeSystem that can be created by the component. + + ### Pipeline The DUUI Pipeline for a component starts with reading the document and ends with writing the annotations back to the document. The graph below shows the flow of the pipeline. After reading the document, they are passed to a Lua script which extracts the needed information and passes it to the analysis tool. The analysis tool then returns the annotations which will be deserialized by the Lua script and written back to the document. For a complete pipeline you can check the tutorials. -```mermaid -flowchart LR; - subgraph Annotation Component - F["Annotation Tool"] - E["Lua"] - end - subgraph Composer - subgraph Z[" "] - direction LR - A[Document] --> B[Reader] - end - subgraph Y[" "] - direction RL - C[Writer] --> D[XMI] - end - end - direction LR - B -.-> E - E -- serialize --> F - F -- deserialize --> E - E --> C -``` +![](https://mermaid.ink/img/pako:eNqFUUtrwzAM_itG52Y_IINCmwcMsks22CPuwYuVxhDbwbEZW-l_n5KwtOkO00nW9xLyCWorEWJoOvtZt8J5VpT33DCqIXwcnehbtjPGeuGVNSyxurcGjZ8pY-UVhyvGs7UdhwO7EDIiFEHQcJ6hkTcBk-uA7qJZoHcSs0X6W1I5rKe4olwjuyq1ddC04YFF0ZbtqxKFRHdjsOywCnv7J6ws1khSvTjlyXyKSqvXx4cr7ZKxNH_X3rPojqTZ_MrIh9EdlOjUN06m-YzkIyJxjV2ptiyBDWh0WihJ33kaIQ6-RY0cYmolNiJ0ngM3Z6KK4O3Tl6kh9i7gBpwNxxbiRnQDvUIvhcdUCbqLninnH4ldoPU?type=png) + + ### Lua script The Lua script is used as a communication interface between the annotation tool and the DUUI composer. The script contains two parts, the first being the `serialize` function that is called to transform the CAS object into a stream that is sent to the annotation tool. The second part is the `deserialize` function that is utilized to transform the output of the annotation tool back into the CAS object. For different examples of Lua scripts you can check our tutorials. -```mermaid -flowchart LR; - subgraph Annotation Component - H["Annotation Tool"] - subgraph LUA - subgraph serialize - direction LR - E["CAS \n Transforming"] --> F[OutputStream] - end - subgraph deserialize - direction RL - G["Write annotation"] - end - end - end - subgraph Composer - subgraph Z[" "] - direction LR - A[Document] --> B[Reader] - end - subgraph Y[" "] - direction RL - C[Writer] --> D[XMI] - end - end - direction LR - B -.-> E - F -.-> H - H -. Output .-> G - G -.-> C - -``` +![](https://mermaid.ink/img/pako:eNqNU9luwyAQ_BXEc9IPcKVKjnNVclTJSdXD5IGadYxkwMKgqo3y78VGoY578sTu7O4MAxxxoRjgCJe1ei0qqg1Ks2sikVutfTlo2lQollIZariSKFGiURKk8SUIrXOCB_hOqZrgPTrDYUZ6H4fkBdCC5rTm7zBEu8W4hqIfmmZjbOFYk3iLiAN2msq2VFpweeiop9MbtMzvrGms2RoNVOyH7SDZtzoY_ENJlo6xlVPyoLkBRIMLTsUPjGEbNoG_d9ZJ-OwM0LPjQKOhv_kT53NVWOFuybsxyzOgDPRowIUTgezpD7KxBUneH197qnn-uLkd9H498FfZMzS9cq0LHy19tPbR2kXI3yXq0iufXvmiBE-wAC0oZ-4JHzuMYFOBAIIjt2VQUlsbgok8uVJqjdq-yQJHRluYYK3socJRSevWRbZh1MCcU-eDOJcA40bpjf8j_Vc5fQA4R-qm?type=png) + + # Docker + Docker is used to run the tool. Docker containers are used to ensure that the analysis is performed in the same environment, regardless of the underlying host system. Also, the Docker container is used to ensure that the analysis is reproducible, because every build of the Docker container is versioned, containing all needed code and data (e.g. model files). The diagram below shows the structure of a Dockerfile: -```mermaid -block-beta - columns 6 - A["Docker Image"] space B["Expose DUUI Port"] space C["Install Dependencies"] space - space space space space space - space F["Define Entrypoint"] space E["Define Environment"] space D["Copy Files"] - - A --> B - B --> C - C --> D - D --> E - E --> F -``` + +![](https://mermaid.ink/img/pako:eNp1kTtrwzAQgP_KoTleO3goxJYNHgqBkqnuoEhnR1Qv9Cg1If-9igSNly7HffqO03F3I9wKJC25KMu_mgtGNhsA4FYlbQK8FDp-zIRmjx4mzVacyScExzhCl83w42xAoOfzBCfr49P22U4mRKYUUHRoBBouMTwrSvua_hd3JeNjDlykQRhM9Juz0uy-G_b6W3prNO49zb63boNRqjJEaV0CHKFpXqGr0BXoK_QFaAVaYKgwFBjJgWj0mkmR93h7qJnEK-q8pjanAheWVB5jNvdcylK075vhpI0-4YF4m9YraRemQqbkBItIJVs903-vKGS0_q1eqhzs_guFyIvu?type=png) + # Rest Interface + The DUUI is designed to be used with REST interface, which is defined as: -```mermaid -graph TD; -A["REST"] --> B["GET /v1/typesystem"] -A --> C["GET /v1/documentation"] -A --> D["GET /v1/communication_layer"] -A --> E["POST /v1/process"] -%%C --> F["Annotator"] -%%C --> G["Version"] -%%C --> H["Optional Parameters"] -``` +![](https://mermaid.ink/img/pako:eNpV0MtqwzAQBdBfEQPZJYRuXSiksZNuSkJtuqlKGaRJbLAe6FEwIf_eqUKKu9PMPTDiXkA5TVDBOaDvRVc_Srv5kPDWtJ2ET7FaPYlnnvdNJ9bfD-s0eYpTTGQ4ZVrAdga0U9mQTZgGZ2emnhnljMl2UMV8jThRmMmG5fHQ3qgPTlGMJV4stgXsGGysdXzDhX_JnpN3CvF--r5_4f3B_17DURwxoKHEjA0swVAwOGju4CKtEBJST4YkVPzUdMI8JgnSXpliTq6drIIqhUxLCC6fe6hOOEaesteYqB6QuzR_W9IDf_P11nIp-_oDP5h3lg?type=png) + The REST interface is used as a standardized way to communicate with the DUUI. - **GET /v1/typesystem** is the TypeSystem that is used by the analysis tool, which contains all UIMA types. - **GET /v1/documentation** is the documentation of the analysis tool, which should contain at least the annotator name and the version as fields. Optional parameters can be added. @@ -155,15 +96,13 @@ The REST interface is used as a standardized way to communicate with the DUUI. # Tutorials -We have prepared three tutorials with different levels of complexity. All tutorials use Python as the programming platform, however, all languages where a REST service can be created could be used as base for a DUUI tool. -```mermaid -graph TD; - A[Tutorial]-->B[Simple Sentiment] - A[Tutorial]-->D[Advance Hate Check]; - A[Tutorial]-->C[Complex Fact Check]; -``` +We have prepared three tutorials with different levels of complexity. All tutorials use Python as the programming platform, however, all languages where a REST service can be created could be used as base for a DUUI tool. +![](https://mermaid.ink/img/pako:eNo9kD1PwzAQhv-KdQNTOwBbBqSQCFHRLoROmOGwL42Ffa4cmw9V_e9cGqUeLN_73IffO4GJlqCC3scfM2DKavuqWcmp3zW8lRyTQ6_hQ63XD-pRtM6FoyfVEWcX5JrYjWqF1PYb2ZB6xkyqGch8zawR1sSp6lc9oclXNg_iW-Htfr9ZptRqAZeQ74RveMypmOwiL2l8L_pL-aTElGkUGVYQKAV0VhydpiYa8kCBNFTytNRj8fJhzWdJRTHX_bGBSjrTClIshwGqHv0oUTlasdE6PCQMV5Wsk43s5p1dVnf-B-NyZwk?type=png) +* [Simple Sentiment](Sentiment) +* [Advance Hate Check](HateCheck) +* [Complex Fact Check](FactChecking) # Autors - [Giuseppe Abrami](https://www.texttechnologylab.org/team/giuseppe-abrami/) diff --git a/pom.xml b/pom.xml index 22ae8eb0..c2fe2292 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.texttechnologylab DockerUnifiedUIMAInterface - 1.3 + 1.4.1 Automatic analysis of large text corpora is a complex task. This complexity particularly concerns the question of time efficiency. Furthermore, efficient, flexible, and extensible textanalysis requires the continuous integration of every new text analysis tools. Since there are currently, in the area of NLP and especially in the application context of UIMA, only very few to no adequate frameworks for these purposes, which are not simultaneously outdated or can no longer be used for security reasons, this work will present a new approach to fill this gap. To this end, we present Docker Unified UIMA Interface (DUUI), a scalable, flexible, lightweight, and featurerich framework for automated and distributed analysis of text corpora that leverages experience in Big Data analytics and virtualization with Docker. @@ -205,7 +205,7 @@ 3.8.0 17 - 17 + diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.java index 8f429aec..8d56a574 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/DUUIFallbackCommunicationLayer.java @@ -47,6 +47,16 @@ public void deserialize(JCas jc, ByteArrayInputStream input, String targetView) } } + @Override + public void serialize(JCas jc, ByteArrayOutputStream out, Map parameters) throws CompressorException, IOException, SAXException, CASException { + serialize(jc, out, parameters, "_InitialView"); + } + + @Override + public void deserialize(JCas jc, ByteArrayInputStream input) throws IOException, SAXException, CASException { + deserialize(jc, input, "_InitialView"); + } + public IDUUICommunicationLayer copy() { return new DUUIFallbackCommunicationLayer(); } diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.java index 20dffe23..83fd905c 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/IDUUICommunicationLayer.java @@ -5,7 +5,9 @@ import org.apache.uima.jcas.JCas; import org.xml.sax.SAXException; -import java.io.*; +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.IOException; import java.util.List; import java.util.Map; @@ -56,4 +58,5 @@ default void deserialize(JCas jc, ByteArrayInputStream input) throws IOException public ByteArrayInputStream merge(List results); String myLuaTestMerging(); + } diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.java index ad8bf111..6d8b8275 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIPipelineComponent.java @@ -22,6 +22,10 @@ import java.nio.file.Paths; import java.util.*; +/** + * Encapsulation of a component for a pipeline. + * @author Alexander Leonhardt + */ public class DUUIPipelineComponent { private HashMap _options; private HashMap _parameters; @@ -67,6 +71,7 @@ public class DUUIPipelineComponent { private static String sourceView = "sourceView"; private static String targetView = "targetView"; + private static String timeout = "timeout"; private String getVersion() throws URISyntaxException, IOException { ClassLoader classLoader = DUUIPipelineComponent.class.getClassLoader(); @@ -501,11 +506,17 @@ public DUUIPipelineComponent withSourceView(String viewName) { return this; } + public DUUIPipelineComponent withTargetView(String viewName) { _options.put(targetView, viewName); return this; } + public DUUIPipelineComponent withTimeout(long lLong) { + _options.put(timeout, String.valueOf(lLong)); + return this; + } + public static DUUIPipelineComponent fromJson(String json) throws URISyntaxException, IOException { JSONObject jobj = new JSONObject(json); @@ -652,4 +663,8 @@ public DUUIPipelineComponent withSegmentationStrategy(DUUISegmentationStrategy s public DUUISegmentationStrategy getSegmentationStrategy() { return this.segmentationStrategy; } + + public long getTimeout() { + return Long.valueOf(_options.getOrDefault(timeout, "60")); + } } diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.java index 4a8d9b97..7b2719d6 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIRemoteDriver.java @@ -27,6 +27,10 @@ import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.atomic.AtomicBoolean; +/** + * + * @author Alexander Leonhardt + */ public class DUUIRemoteDriver implements IDUUIDriverInterface { private HashMap _components; private HttpClient _client; diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.java index b0773551..c96d5cce 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUISwarmDriver.java @@ -31,6 +31,10 @@ import static java.lang.String.format; +/** + * + * @author Alexander Leonhardt + */ public class DUUISwarmDriver implements IDUUIDriverInterface { private final DUUIDockerInterface _interface; private HttpClient _client; diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.java index f38435dc..1cb4edf1 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/DUUIUIMADriver.java @@ -34,6 +34,10 @@ import static java.lang.String.format; +/** + * + * @author Alexander Leonhardt + */ public class DUUIUIMADriver implements IDUUIDriverInterface { private HashMap _engines; private boolean _enable_debug; diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.java index e1465466..201af4be 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIDriverInterface.java @@ -21,17 +21,81 @@ * @author Alexander Leonhardt */ public interface IDUUIDriverInterface { + /** + * Method for defining the Lua context to be used, which determines the transfer type between Composer and components. + * @see DUUILuaContext + * @param luaContext + */ public void setLuaContext(DUUILuaContext luaContext); + + /** + * Method for checking whether the selected component can be used via the driver. + * @param component + * @return + * @throws InvalidXMLException + * @throws IOException + * @throws SAXException + */ public boolean canAccept(DUUIPipelineComponent component) throws InvalidXMLException, IOException, SAXException; + + /** + * Initialisation method + * @param component + * @param jc + * @param skipVerification + * @param shutdown + * @return + * @throws Exception + */ public String instantiate(DUUIPipelineComponent component, JCas jc, boolean skipVerification, AtomicBoolean shutdown) throws Exception; + + /** + * Visualisation of the concurrency + * @param uuid + */ public void printConcurrencyGraph(String uuid); //TODO: public InputOutput get_inputs_and_outputs(String uuid) //Example: get_typesystem(...) + + /** + * Returns the TypeSystem used for the respective component. + * @see TypeSystemDescription + * @param uuid + * @return + * @throws InterruptedException + * @throws IOException + * @throws SAXException + * @throws CompressorException + * @throws ResourceInitializationException + */ public TypeSystemDescription get_typesystem(String uuid) throws InterruptedException, IOException, SAXException, CompressorException, ResourceInitializationException; + + /** + * Starting a component. + * @param uuid + * @param aCas + * @param perf + * @param composer + * @throws InterruptedException + * @throws IOException + * @throws SAXException + * @throws AnalysisEngineProcessException + * @throws CompressorException + * @throws CASException + */ public void run(String uuid, JCas aCas, DUUIPipelineDocumentPerformance perf, DUUIComposer composer) throws InterruptedException, IOException, SAXException, AnalysisEngineProcessException, CompressorException, CASException; + /** + * Destruction of a component + * @param uuid + * @return + */ public boolean destroy(String uuid); + + /** + * Shutting down the driver + */ public void shutdown(); } diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.java index 54febe69..2cd8bc77 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIInstantiatedPipelineComponent.java @@ -29,6 +29,10 @@ import java.util.List; import java.util.Map; +/** + * The interface for the instance of each component that is executed in a pipeline. + * @author Alexander Leonhardt + */ public interface IDUUIInstantiatedPipelineComponent { public static HttpClient _client = HttpClient.newBuilder() .version(HttpClient.Version.HTTP_1_1) @@ -45,6 +49,13 @@ public interface IDUUIInstantiatedPipelineComponent { public String getTargetView(); public String getUniqueComponentKey(); + /** + * Returns the TypeSystem used for the DUUI component used. + * @param uuid + * @param comp + * @return + * @throws ResourceInitializationException + */ public static TypeSystemDescription getTypesystem(String uuid, IDUUIInstantiatedPipelineComponent comp) throws ResourceInitializationException { Triplet queue = comp.getComponent(); //System.out.printf("Address %s\n",queue.getValue0().generateURL()+ DUUIComposer.V1_COMPONENT_ENDPOINT_TYPESYSTEM); @@ -82,6 +93,16 @@ public static TypeSystemDescription getTypesystem(String uuid, IDUUIInstantiated throw new ResourceInitializationException(new Exception("Endpoint is unreachable!")); } + /** + * Calling the DUUI component + * @param jc + * @param comp + * @param perf + * @throws CompressorException + * @throws IOException + * @throws SAXException + * @throws CASException + */ public static void process(JCas jc, IDUUIInstantiatedPipelineComponent comp, DUUIPipelineDocumentPerformance perf) throws CompressorException, IOException, SAXException, CASException { Triplet queue = comp.getComponent(); @@ -122,11 +143,12 @@ public static void process(JCas jc, IDUUIInstantiatedPipelineComponent comp, DUU long annotatorStart = serializeEnd; int tries = 0; HttpResponse resp = null; - while(tries < 10) { + while (tries < 3) { tries++; try { HttpRequest request = HttpRequest.newBuilder() .uri(URI.create(queue.getValue0().generateURL() + DUUIComposer.V1_COMPONENT_ENDPOINT_PROCESS)) + .timeout(Duration.ofSeconds(comp.getPipelineComponent().getTimeout())) .POST(HttpRequest.BodyPublishers.ofByteArray(ok)) .version(HttpClient.Version.HTTP_1_1) .build(); @@ -139,7 +161,7 @@ public static void process(JCas jc, IDUUIInstantiatedPipelineComponent comp, DUU } } if(resp==null) { - throw new IOException("Could not reach endpoint after 10 tries!"); + throw new IOException("Could not reach endpoint after 3 tries!"); } @@ -197,6 +219,17 @@ public static void process(JCas jc, IDUUIInstantiatedPipelineComponent comp, DUU } } + /** + * The process merchant describes the use of the component as a web socket + * @param jc + * @param comp + * @param perf + * @throws CompressorException + * @throws IOException + * @throws SAXException + * @throws CASException + * @throws InterruptedException + */ public static void process_handler(JCas jc, IDUUIInstantiatedPipelineComponent comp, DUUIPipelineDocumentPerformance perf) throws CompressorException, IOException, SAXException, CASException, InterruptedException { diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.java index 83373134..295b9680 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIPipelineComponent.java @@ -3,14 +3,31 @@ import java.util.HashMap; import java.util.Map; +/** + * Encapsulation of a pipeline component + * @author Alexander Leonhardt + */ public class IDUUIPipelineComponent { + /** + * Options of the Component + */ private HashMap _options; + /** + * Params of the Component + */ private HashMap _parameters; + /** + * default constructor + */ public IDUUIPipelineComponent() { _options = new HashMap<>(); } + /** + * constructor + * @param options + */ public IDUUIPipelineComponent(Map options) { _options = new HashMap<>(); for(Map.Entry entry : options.entrySet()) { @@ -18,6 +35,12 @@ public IDUUIPipelineComponent(Map options) { } } + /** + * Adding a key-value pair as a parameter + * @param key + * @param value + * @return + */ public IDUUIPipelineComponent withParameter(String key, String value) { //TODO: Add this to the ArangoDB backend!!! Only options are serialized at the moment if(_parameters==null) { @@ -27,36 +50,76 @@ public IDUUIPipelineComponent withParameter(String key, String value) { return this; } + /** + * Return of all set parameters + * @return + */ public Map getParameters() { return _parameters; } + /** + * Duplication of the options of an existing component + * @param other + */ public IDUUIPipelineComponent(IDUUIPipelineComponent other) { _options = other._options; } + /** + * Adding a key-value pair as an option + * @param key + * @param value + */ public void setOption(String key, String value) { _options.put(key, value); } + /** + * Get specific value of an option-parameter + * @param key + * @return + */ public String getOption(String key) { return _options.get(key); } + /** + * Check whether a key exists as an option. + * @param key + * @return + */ public boolean hasOption(String key) { return _options.containsKey(key); } + /** + * Return of all configured options + * @return + */ public Map getOptions() {return _options;} + /** + * Set option "name" + * @param name + */ public void withName(String name) { setOption("name",name); } + /** + * Get option "name" + * @return + */ public String getName() { return getOption("name"); } + /** + * Remove an option by using a key + * @param key + * @return + */ public String removeOption(String key) { return _options.remove(key); } diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.java index 0171b04d..430e4c14 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/driver/IDUUIUrlAccessible.java @@ -2,8 +2,27 @@ import org.texttechnologylab.DockerUnifiedUIMAInterface.IDUUICommunicationLayer; import org.texttechnologylab.DockerUnifiedUIMAInterface.connection.IDUUIConnectionHandler; +/** + * Interface for the generation of DUUI-available URLs + * @author Alexander Leonhardt + */ public interface IDUUIUrlAccessible { + /** + * Returns the URL of the DUUI-component. + * @return + */ public String generateURL(); + + /** + * Returns the connection handler for accessing connectors. + * @return + */ public IDUUIConnectionHandler getHandler(); + + /** + * Returns the communication layer. + * @see org.luaj.vm2.Lua + * @return + */ public IDUUICommunicationLayer getCommunicationLayer(); } diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIYouTubeReader.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIYouTubeReader.java index 3c1dbd3b..87fa3f45 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIYouTubeReader.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/io/reader/DUUIYouTubeReader.java @@ -461,8 +461,11 @@ private void setVideoMetadata(YouTubeVideo video, JCas jCas) throws IOException, FSList list = FSList.create(jCas, playlists); list.addToIndexes(); + + youTube.setPlaylist(list); } + youTube.setName(video._title); youTube.setUrl(video.getVideoUrl()); youTube.setChannelName(video._channelName); youTube.setChannelURL(video._channelUrl); diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationDropper.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationDropper.java new file mode 100644 index 00000000..b8d9a712 --- /dev/null +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/AnnotationDropper.java @@ -0,0 +1,162 @@ +package org.texttechnologylab.DockerUnifiedUIMAInterface.tools; + +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.function.Predicate; +import java.util.stream.Collectors; + +import org.apache.uima.UimaContext; +import org.apache.uima.analysis_engine.AnalysisEngineProcessException; +import org.apache.uima.cas.Type; +import org.apache.uima.fit.component.JCasAnnotator_ImplBase; +import org.apache.uima.fit.descriptor.ConfigurationParameter; +import org.apache.uima.jcas.JCas; +import org.apache.uima.resource.ResourceInitializationException; + +/** + * A {@link JCasAnnotator_ImplBase JCasAnnotator} that drops or retains specific + * types from processed CASes. + * + * @author Manuel Stoeckel + * @version 0.2.0 + */ +public class AnnotationDropper extends JCasAnnotator_ImplBase { + /** + * The types to drop from the CAS. + * Must be the fully qualified class name of the type. + * + * @apiNote You can use the + * {@link org.apache.uima.jcas.cas.TOP#_TypeName _TypeName} field of + * any {@link org.apache.uima.jcas.tcas.Annotation annotation} to + * access the fully qualified class name for convenience. + * @apiNote Only one of {@link #PARAM_TYPES_TO_DROP} or + * {@link #PARAM_TYPES_TO_RETAIN} can be set. + */ + public static final String PARAM_TYPES_TO_DROP = "typesToDrop"; + @ConfigurationParameter(name = PARAM_TYPES_TO_DROP, mandatory = false, defaultValue = {}) + private String[] paramTypesToDrop; + + /** + * The types to drop from the CAS. + * Must be the fully qualified class name of the type. + * + * @apiNote WARNING: Make sure to include integral base types like + * {@link org.apache.uima.jcas.cas.Sofa Sofa}! + * @apiNote You can use the + * {@link org.apache.uima.jcas.cas.TOP#_TypeName _TypeName} field of + * any {@link org.apache.uima.jcas.tcas.Annotation annotation} to + * access the fully qualified class name for convenience. + * @apiNote Only one of {@link #PARAM_TYPES_TO_DROP} or + * {@link #PARAM_TYPES_TO_RETAIN} can be set. + */ + public static final String PARAM_TYPES_TO_RETAIN = "typesToRetain"; + @ConfigurationParameter(name = PARAM_TYPES_TO_RETAIN, mandatory = false, defaultValue = {}) + private String[] paramTypesToRetain; + + enum Mode { + _UNSET, + RETAIN, + DROP + } + + private Mode mode = Mode._UNSET; + private HashSet typeSet = new HashSet<>(); + + /** + * @return The mode of operation. + * Will always be either {@link Mode#RETAIN} or {@link Mode#DROP}. + * @throws IllegalStateException If the mode is unset (i.e. prior to + * {@link #initialize initialization}). + */ + public Mode getMode() { + switch (this.mode) { + case RETAIN: + return Mode.RETAIN; + case DROP: + return Mode.DROP; + case _UNSET: + default: + throw new IllegalStateException("Mode is unset"); + } + } + + /** + * @return An immutable copy of the {@link #typeSet}. + * @apiNote The returned set can only be empty prior to + * {@link #initialize initialization}. + */ + public Set getTypeSet() { + return Set.copyOf(this.typeSet); + } + + /** + * Initializes the annotator. + * + * You can either drop or retain specific types from the CAS. + * The mode of operations is determined automatically based on the + * configuration. + * + * @throws IllegalArgumentException If both parameters + * {@link #PARAM_TYPES_TO_DROP} and + * {@link #PARAM_TYPES_TO_RETAIN} are set. + * @throws IllegalArgumentException If both parameters are empty. + */ + @Override + public void initialize(UimaContext context) throws ResourceInitializationException { + super.initialize(context); + + if (this.paramTypesToDrop.length == 0 && this.paramTypesToRetain.length == 0) { + throw new ResourceInitializationException( + new IllegalArgumentException("At least one of PARAM_TYPES_TO_DROP or PARAM_TYPES_TO_RETAIN must be set")); + } else if (this.paramTypesToDrop.length > 0 && this.paramTypesToRetain.length > 0) { + throw new ResourceInitializationException( + new IllegalArgumentException("Only one of PARAM_TYPES_TO_DROP or PARAM_TYPES_TO_RETAIN can be set")); + } + + if (this.paramTypesToDrop.length > 0) { + this.mode = Mode.DROP; + this.typeSet = new HashSet<>(List.of(this.paramTypesToDrop)); + } else { + this.mode = Mode.RETAIN; + this.typeSet = new HashSet<>(List.of(this.paramTypesToRetain)); + } + } + + @Override + public void process(JCas aJCas) throws AnalysisEngineProcessException { + switch (this.mode) { + case RETAIN: + retainTypes(aJCas, this.typeSet); + break; + case DROP: + dropTypes(aJCas, this.typeSet); + break; + case _UNSET: + default: + throw new IllegalStateException("Mode is unset"); + } + } + + static void retainTypes(JCas aJCas, Set typesToRetain) { + Set typesToDrop = aJCas.getAnnotationIndex().iterator() + .stream() + .map(a -> a.getType().getName()) + .distinct() + .filter(Predicate.not(typesToRetain::contains)) + .collect(Collectors.toSet()); + + dropTypes(aJCas, typesToDrop); + } + + static void dropTypes(JCas aJCas, Iterable typesToDrop) { + for (String typeName : typesToDrop) { + dropType(aJCas, typeName); + } + } + + static void dropType(JCas aJCas, String typeName) { + Type type = aJCas.getTypeSystem().getType(typeName); + aJCas.select(type).forEach(a -> a.removeFromIndexes(aJCas)); + } +} diff --git a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/MultimodalUtil.java b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/MultimodalUtil.java index bc34867e..b3f08914 100644 --- a/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/MultimodalUtil.java +++ b/src/main/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/MultimodalUtil.java @@ -445,16 +445,39 @@ private static void executeFFMpeg(String absoluteInputPath, List command } } + /** + * Gets subimages as independent image files in .png + * @param jCas The JCas containing SubImage Annotations + * @return A List of files, each containing a SubImage. Files get deleted on exit + */ public static List getSubImages(JCas jCas){ - return getSubImages(jCas, null); + return getSubImages(jCas, "png"); } - public static List getSubImages(JCas jCas, String overrideExtension) { + /** + * Gets subimages as independent image files + * @param jCas The JCas containing SubImage Annotations + * @param extension Changes the subimages images file extension + * @return A List of files, each containing a SubImage. Files get deleted on exit + */ + public static List getSubImages(JCas jCas, String extension) { + + if(extension.startsWith(".")) + extension = extension.substring(1); + String finalExtension = extension; + List subImages = new ArrayList<>(); JCasUtil.select(jCas, SubImage.class).forEach(subImage -> { - byte[] base64Image = Base64.decodeBase64(subImage.getParent().getSrc()); + String mainImageB64 = ""; + if(subImage.getParent().getSrc() == null){ + mainImageB64 = jCas.getSofaDataString(); + }else{ + mainImageB64 = subImage.getParent().getSrc(); + } + + byte[] base64Image = Base64.decodeBase64(mainImageB64); try { BufferedImage bImage = ImageIO.read(new ByteArrayInputStream(base64Image)); @@ -468,45 +491,28 @@ public static List getSubImages(JCas jCas, String overrideExtension) { Rectangle bounds = polygon.getBounds(); - BufferedImage bSubImage = new BufferedImage(bounds.width, bounds.height, BufferedImage.TYPE_INT_RGB); - - Graphics2D graphics = bSubImage.createGraphics(); - - polygon.translate(-bounds.x, -bounds.y); - - graphics.setClip(polygon); - graphics.drawImage(bImage, -bounds.x, -bounds.y, null); - - // Create file - - File tempInputFile = new File("tempInputImage"); - tempInputFile.deleteOnExit(); - try (OutputStream stream = new FileOutputStream(tempInputFile)) { - stream.write(base64Image); - } - - String mimeType = Files.probeContentType(tempInputFile.toPath()); - String subType = ""; - - if(overrideExtension == null){ - if(mimeType != null && !mimeType.isEmpty()){ - subType = mimeType.split("/")[1]; - }else{ - subType = "jpg"; - } - }else{ - subType = overrideExtension; - if(subType.startsWith(".")){ - if(subType.length() > 1) - subType = subType.substring(1); + BufferedImage bSubImage; + if(finalExtension.equals("png") || finalExtension.equals("tiff") || finalExtension.equals("gif") || finalExtension.equals("apng")) + bSubImage = new BufferedImage(bounds.width, bounds.height, BufferedImage.TYPE_INT_ARGB); // Alpha channel support + else + bSubImage = new BufferedImage(bounds.width, bounds.height, BufferedImage.TYPE_INT_RGB); // No alpha + + // Copy pixels form main image to new subimage + for (int x = bounds.x; x < bounds.x + bounds.width; x++) { + for (int y = bounds.y; y < bounds.y + bounds.height; y++) { + if(polygon.contains(x, y)){ + int iColor = bImage.getRGB(x, y); + bSubImage.setRGB(x - bounds.x, y - bounds.y, iColor); + } } } - File outputFile = new File(getOutputName(jCas, subImage, subType)); + // Create output file + File outputFile = new File(getOutputName(jCas, subImage, finalExtension)); outputFile.deleteOnExit(); RenderedImage rendImage = bSubImage; - ImageIO.write(rendImage, subType, outputFile); + ImageIO.write(rendImage, finalExtension, outputFile); subImages.add(outputFile); } catch (IOException e) { diff --git a/src/test/java/TestDUUI.java b/src/test/java/TestDUUI.java index e8076dcb..a0e858dc 100644 --- a/src/test/java/TestDUUI.java +++ b/src/test/java/TestDUUI.java @@ -1171,7 +1171,6 @@ public void multimodalImageCutterTest() throws Exception{ composer.add(new DUUIDockerDriver.Component("duui-yolo:latest") // Image detection .withScale(iWorkers) - .withRunningAfterDestroy(true) .build()); composer.add(new DUUIUIMADriver.Component(createEngineDescription(XmiWriter.class, diff --git a/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/TestReadabilityReader.java b/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/TestReadabilityReader.java index 6ff18683..a40cbf01 100755 --- a/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/TestReadabilityReader.java +++ b/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/TestReadabilityReader.java @@ -1,7 +1,7 @@ package org.texttechnologylab.DockerUnifiedUIMAInterface; -import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Paragraph; import de.tudarmstadt.ukp.dkpro.core.api.metadata.type.DocumentMetaData; +import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Paragraph; import org.apache.uima.UIMAException; import org.apache.uima.cas.impl.XmiCasSerializer; import org.apache.uima.collection.CollectionReaderDescription; @@ -10,13 +10,14 @@ import org.dkpro.core.io.xmi.XmiWriter; import org.junit.jupiter.api.Test; import org.texttechnologylab.DockerUnifiedUIMAInterface.driver.*; -import org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader; import org.texttechnologylab.DockerUnifiedUIMAInterface.io.DUUIAsynchronousProcessor; +import org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.DUUIFileReader; import org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.DUUIHTMLReadabilityReader; import org.texttechnologylab.DockerUnifiedUIMAInterface.io.reader.html.readability.HTMLReadabilityLoader; import org.texttechnologylab.DockerUnifiedUIMAInterface.lua.DUUILuaContext; import org.texttechnologylab.DockerUnifiedUIMAInterface.segmentation.DUUISegmentationStrategyByAnnotation; import org.xml.sax.SAXException; + import javax.xml.parsers.ParserConfigurationException; import javax.xml.transform.OutputKeys; import java.io.BufferedReader; @@ -26,9 +27,9 @@ import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardCopyOption; -import java.util.zip.GZIPOutputStream; -import java.util.List; import java.util.ArrayList; +import java.util.List; +import java.util.zip.GZIPOutputStream; import static org.apache.uima.fit.factory.AnalysisEngineFactory.createEngineDescription; import static org.apache.uima.fit.factory.CollectionReaderFactory.createReaderDescription; @@ -654,7 +655,7 @@ public void testGenreClassla() throws Exception { DUUIUIMADriver uimaDriver = new DUUIUIMADriver(); DUUISwarmDriver swarmDriver = new DUUISwarmDriver(); DUUIDockerDriver dockerDriver = new DUUIDockerDriver(); - DUUIKubernetesDriver kubernetesDriver = new DUUIDockerDriver(); + DUUIKubernetesDriver kubernetesDriver = new DUUIKubernetesDriver(); composer.addDriver(uimaDriver, swarmDriver, dockerDriver, kubernetesDriver); @@ -667,7 +668,6 @@ public void testGenreClassla() throws Exception { // .withParameter("selection", "de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Sentence") .withParameter("selection", "text") .withScale(scale) - .withConstraintHost("isengart") .withLabels("hostname=isengart") .build() ); diff --git a/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/TestAnnotationDropper.java b/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/TestAnnotationDropper.java new file mode 100644 index 00000000..7333847b --- /dev/null +++ b/src/test/java/org/texttechnologylab/DockerUnifiedUIMAInterface/tools/TestAnnotationDropper.java @@ -0,0 +1,189 @@ +package org.texttechnologylab.DockerUnifiedUIMAInterface.tools; + +import static org.apache.uima.fit.factory.AnalysisEngineFactory.createEngine; +import static org.apache.uima.fit.factory.AnalysisEngineFactory.createEngineDescription; + +import java.io.IOException; +import java.net.URISyntaxException; +import java.net.UnknownHostException; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +import org.apache.uima.analysis_engine.AnalysisEngine; +import org.apache.uima.analysis_engine.AnalysisEngineProcessException; +import org.apache.uima.cas.CASException; +import org.apache.uima.fit.factory.JCasFactory; +import org.apache.uima.fit.util.JCasUtil; +import org.apache.uima.jcas.JCas; +import org.apache.uima.jcas.cas.Sofa; +import org.apache.uima.resource.ResourceInitializationException; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.texttechnologylab.DockerUnifiedUIMAInterface.DUUIComposer; +import org.texttechnologylab.DockerUnifiedUIMAInterface.driver.DUUIUIMADriver; +import org.xml.sax.SAXException; + +import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Sentence; +import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Token; + +public class TestAnnotationDropper { + static JCas jCas; + static DUUIComposer composer; + + static final List sentences = Arrays.asList( + new String[] { "This", "is", "a", "sentence", "." }, + new String[] { "This", "is", "another", "sentence", "." }, + new String[] { "This", "is", "a", "third", "sentence", "." }); + + @BeforeAll + static void setUp() throws ResourceInitializationException { + try { + jCas = JCasFactory.createJCas(); + } catch (ResourceInitializationException | CASException e) { + throw new ResourceInitializationException(e); + } + resetCas(); + + Assertions.assertEquals(3, JCasUtil.select(jCas, Sentence.class).size()); + Assertions.assertEquals(16, JCasUtil.select(jCas, Token.class).size()); + + try { + composer = new DUUIComposer() + .withSkipVerification(true) + .withWorkers(1); + } catch (URISyntaxException e) { + throw new ResourceInitializationException(e); + } + + DUUIUIMADriver uimaDriver = new DUUIUIMADriver().withDebug(false); + composer.addDriver(uimaDriver); + } + + @AfterEach + public void afterEach() throws IOException, SAXException { + composer.resetPipeline(); + resetCas(); + } + + static void resetCas() { + jCas.reset(); + jCas.setDocumentText(sentences.stream().flatMap(Arrays::stream).collect(Collectors.joining(" "))); + int tokenOffset = 0; + int sentenceOffset = 0; + for (String[] sentence : sentences) { + String text = String.join(" ", sentence); + jCas.addFsToIndexes(new Sentence(jCas, sentenceOffset, sentenceOffset + text.length())); + sentenceOffset += text.length() + 1; + for (String token : sentence) { + jCas.addFsToIndexes(new Token(jCas, tokenOffset, tokenOffset + token.length())); + tokenOffset += token.length() + 1; + } + } + } + + @AfterAll + static void afterAll() throws UnknownHostException { + composer.shutdown(); + } + + @Test + public void testTypesToRetain() throws ResourceInitializationException, CASException { + try { + AnalysisEngine dropper = createEngine( + AnnotationDropper.class, + AnnotationDropper.PARAM_TYPES_TO_RETAIN, + new String[] { + Sofa._TypeName, + org.apache.uima.jcas.tcas.DocumentAnnotation._TypeName, + org.texttechnologylab.annotation.DocumentAnnotation._TypeName, + Sentence._TypeName, + }); + + try { + dropper.process(jCas); + } catch (AnalysisEngineProcessException e) { + throw new RuntimeException(e); + } + + Assertions.assertEquals(3, JCasUtil.select(jCas, Sentence.class).size()); + Assertions.assertEquals(0, JCasUtil.select(jCas, Token.class).size()); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + @Test + public void testTypesToDrop() throws ResourceInitializationException, CASException { + try { + AnalysisEngine dropper = createEngine( + AnnotationDropper.class, + AnnotationDropper.PARAM_TYPES_TO_DROP, + new String[] { + Token._TypeName, + }); + + try { + dropper.process(jCas); + } catch (AnalysisEngineProcessException e) { + throw new RuntimeException(e); + } + + Assertions.assertEquals(3, JCasUtil.select(jCas, Sentence.class).size()); + Assertions.assertEquals(0, JCasUtil.select(jCas, Token.class).size()); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + @Test + public void testTypesToRetainDUUI() { + try { + composer.add(new DUUIUIMADriver.Component(createEngineDescription( + AnnotationDropper.class, + AnnotationDropper.PARAM_TYPES_TO_RETAIN, + new String[] { + Sofa._TypeName, + Sentence._TypeName, + }))); + + try { + composer.run(jCas); + } catch (Exception e) { + Assertions.fail("DUUIComposer failed", e); + } + + Assertions.assertEquals(3, JCasUtil.select(jCas, Sentence.class).size()); + Assertions.assertEquals(0, JCasUtil.select(jCas, Token.class).size()); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + @Test + public void testTypesToDropDUUI() { + try { + composer.add(new DUUIUIMADriver.Component(createEngineDescription( + AnnotationDropper.class, + AnnotationDropper.PARAM_TYPES_TO_DROP, + new String[] { + Token._TypeName, + }))); + + try { + composer.run(jCas); + } catch (Exception e) { + Assertions.fail("DUUIComposer failed", e); + } + + Assertions.assertEquals(3, JCasUtil.select(jCas, Sentence.class).size()); + Assertions.assertEquals(0, JCasUtil.select(jCas, Token.class).size()); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + +}