Package | Description |
---|---|
org.apache.uima.adapter.soap | |
org.apache.uima.adapter.vinci | |
org.apache.uima.analysis_engine |
The Analysis Engine interface, along with supporting
interfaces and exception classes.
|
org.apache.uima.analysis_engine.impl | |
org.apache.uima.analysis_engine.service.impl | |
org.apache.uima.collection |
Classes and interfaces for collection processing.
|
org.apache.uima.collection.base_cpm | |
org.apache.uima.collection.impl | |
org.apache.uima.collection.impl.base_cpm.container | |
org.apache.uima.collection.impl.base_cpm.container.deployer | |
org.apache.uima.collection.impl.cpm | |
org.apache.uima.collection.impl.cpm.container | |
org.apache.uima.collection.impl.cpm.engine | |
org.apache.uima.examples.cpe |
Examples of using the Collection Processing Manager (CPM).
|
org.apache.uima.examples.xmi | |
org.apache.uima.test.junit_extension | |
org.apache.uima.tools.components |
Modifier and Type | Class and Description |
---|---|
class |
SoapAnalysisEngineServiceAdapter
Reference implementation of
AnalysisEngineServiceAdapter for SOAP. |
Modifier and Type | Class and Description |
---|---|
class |
VinciAnalysisEngineServiceAdapter
Reference implementation of
AnalysisEngineServiceAdapter for Vinci. |
Modifier and Type | Interface and Description |
---|---|
interface |
AnalysisEngine
An Analysis Engine is a component responsible for analyzing unstructured information, discovering
and representing semantic content.
|
interface |
TextAnalysisEngine
Deprecated.
As of v2.0,
AnalysisEngine should be used instead. This interface no longer
defines any additional methods beyond those in AnalysisEngine. |
Modifier and Type | Class and Description |
---|---|
class |
AggregateAnalysisEngine_impl
Reference implementation of
AnalysisEngine . |
class |
AnalysisEngineImplBase
Provides functionality common to Analysis Engine implementations.
|
class |
MultiprocessingAnalysisEngine_impl
An
AnalysisEngine implementation that can process multiple CAS objects
simultaneously. |
class |
PearAnalysisEngineWrapper
UIMA pear runtime analysis engine wrapper.
|
class |
PrimitiveAnalysisEngine_impl
Reference implementation of
AnalysisEngine . |
class |
UimacppAnalysisEngineImpl
Reference implementation of
AnalysisEngine . |
Modifier and Type | Class and Description |
---|---|
class |
AnalysisEngineServiceAdapter
Base class for analysis engine service adapters.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CasConsumer
Any component that operates on analysis results produced by a UIMA analysis engine.
|
Modifier and Type | Class and Description |
---|---|
class |
CasConsumer_ImplBase
Base class for CAS Consumers in UIMA SDK v1.x, which developers should extend
with their own CAS Consumer implementation classes.
|
Modifier and Type | Method and Description |
---|---|
CasProcessor[] |
CollectionProcessingEngine.getCasProcessors()
Gets the
CasProcessors s in this CPE, in the order in which they will be
executed. |
Modifier and Type | Interface and Description |
---|---|
interface |
CasDataConsumer
Any component that operates on analysis results produced by a UIMA CasDataProcessor.
|
interface |
CasDataProcessor
Interface for CAS processors that want to interact directly with the
CasData . |
interface |
CasObjectProcessor
Interface for CAS Processors that want to use the full
CAS implementation. |
Modifier and Type | Class and Description |
---|---|
class |
CasDataConsumer_ImplBase
Base class from which to extend when writing CAS Consumers that use the
CasData interface
to access the CAS. |
Modifier and Type | Method and Description |
---|---|
CasProcessor[] |
BaseCPM.getCasProcessors()
Gets the
CasProcessors s assigned to this CPM, in the order in which they will
be called by the CPM. |
Modifier and Type | Method and Description |
---|---|
void |
BaseCPM.addCasProcessor(CasProcessor aCasProcessor)
Adds a
CasProcessor to this CPM's list of consumers. |
void |
BaseCPM.addCasProcessor(CasProcessor aCasProcessor,
int aIndex)
Adds a
CasProcessor to this CPM's list of consumers. |
void |
BaseCPM.removeCasProcessor(CasProcessor aCasProcessor)
Removes a
CasProcessor to this CPM's list of consumers. |
Modifier and Type | Method and Description |
---|---|
CasProcessor[] |
CollectionProcessingEngine_impl.getCasProcessors() |
Modifier and Type | Method and Description |
---|---|
CasProcessor |
CasProcessorController.getCasProcessor()
Returns instance of CasProcessor
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
ProcessingContainer.isEndOfBatch(CasProcessor aCasProcessor,
int aProcessedSize) |
abstract void |
ProcessingContainer.releaseCasProcessor(CasProcessor aCasProcessor) |
Modifier and Type | Method and Description |
---|---|
ProcessingContainer |
CPEDeployer.deployCasProcessor(ProcessingContainer aProcessingContainer,
CasProcessor aCasProcessor,
boolean redeploy) |
Modifier and Type | Method and Description |
---|---|
CasProcessor[] |
BaseCPMImpl.getCasProcessors() |
Modifier and Type | Method and Description |
---|---|
void |
BaseCPMImpl.addCasProcessor(CasProcessor aCasProcessor) |
void |
BaseCPMImpl.addCasProcessor(CasProcessor aCasProcessor,
int aIndex) |
void |
BaseCPMImpl.removeCasProcessor(CasProcessor aCasProcessor) |
Modifier and Type | Class and Description |
---|---|
class |
CasObjectNetworkCasProcessorImpl
Implementation of the
CasObjectProcessor interface used for both Local and Remote
CasObjectProcessors. |
class |
NetworkCasProcessorImpl
Implementation of the
CasDataProcessor interface used for both Local and Remote
CasDataProcessors. |
Modifier and Type | Method and Description |
---|---|
CasProcessor |
ServiceProxyPool.checkOut()
Checks out a Resource from the pool.
|
CasProcessor |
ServiceProxyPool.checkOut(long aTimeout)
Checks out a Resource from the pool.
|
CasProcessor |
ProcessingContainer_Impl.getCasProcessor()
Returns available instance of the CasProcessor from the instance pool.
|
CasProcessor[] |
CPEFactory.getCasProcessors()
Returns an array of Cas Processors instantiated from the cpe descriptor
|
CasProcessor |
CPEFactory.produceCasDataConsumer(Class aResourceClass,
ResourceSpecifier aSpecifier,
Map aAdditionalParams)
Instantiates CasData Consumer from a given class.
|
Modifier and Type | Method and Description |
---|---|
void |
CPEFactory.addCasProcessor(CasProcessor aCasProcessor)
Appends given Cas Processor to the list of CasProcessors
|
void |
ServiceProxyPool.addCasProcessor(CasProcessor aCasProcessor) |
void |
ServiceProxyPool.checkIn(CasProcessor aResource)
Checks in a Resource to the pool.
|
boolean |
ProcessingContainer_Impl.isEndOfBatch(CasProcessor aCasProcessor,
int aProcessedSize) |
void |
ProcessingContainer_Impl.releaseCasProcessor(CasProcessor aCasProcessor)
Returns a given casProcessor instance back to the pool.
|
Modifier and Type | Method and Description |
---|---|
CasProcessor[] |
CPMEngine.getCasProcessors()
Returns all CASProcesors in the processing pipeline
|
Modifier and Type | Method and Description |
---|---|
void |
CPMEngine.addCasProcessor(CasProcessor aCasProcessor)
Adds a CASProcessor to the processing pipeline.
|
void |
CPMEngine.addCasProcessor(CasProcessor aCasProcessor,
int aIndex)
Adds a CASProcessor to the processing pipeline at a given place in the processing pipeline
|
boolean |
CPMEngine.isParallizable(CasProcessor aProcessor,
String aCpName)
Determines if a given Cas Processor is parallelizable.
|
Modifier and Type | Class and Description |
---|---|
class |
AnnotationPrinter
An example of CAS Consumer.
|
class |
PersonTitleDBWriterCasConsumer
A simple CAS consumer that creates a Derby (Cloudscape) database in the file system.
|
Modifier and Type | Class and Description |
---|---|
class |
XmiEcoreCasConsumer
A variation of the XmiWriterCasConsumer that also saves the Type System to an Ecore file and
links all of the XMI files to it via their schemaLocation attribute.
|
Modifier and Type | Class and Description |
---|---|
class |
AnnotationWriter
The AnnotationWriter class writes specified annotations to an output file.
|
Modifier and Type | Class and Description |
---|---|
class |
InlineXmlCasConsumer
A simple CAS consumer that generates inline XML and writes it to a file.
|
class |
XCasWriterCasConsumer
A simple CAS consumer that generates XCAS (XML representation of the CAS) files in the
filesystem.
|
class |
XmiWriterCasConsumer
A simple CAS consumer that writes the CAS to XMI format.
|
Copyright © 2014. All rights reserved.