Uses of Class
org.apache.uima.analysis_engine.AnalysisEngineProcessException
-
Packages that use AnalysisEngineProcessException Package Description org.apache.uima.analysis_component org.apache.uima.analysis_engine The Analysis Engine interface, along with supporting interfaces and exception classes.org.apache.uima.analysis_engine.asb Contains the Analysis Structure Broker (ASB) interface, along with supporting interfaces and exception classes.org.apache.uima.analysis_engine.asb.impl org.apache.uima.analysis_engine.impl org.apache.uima.analysis_engine.impl.compatibility org.apache.uima.analysis_engine.service.impl org.apache.uima.collection.impl.cpm.container.deployer.socket org.apache.uima.flow org.apache.uima.flow.impl org.apache.uima.internal.util org.apache.uima.tools.components org.apache.uima.uimacpp -
-
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_component
Methods in org.apache.uima.analysis_component that throw AnalysisEngineProcessException Modifier and Type Method Description void
AnalysisComponent_ImplBase. batchProcessComplete()
void
AnalysisComponent. batchProcessComplete()
Completes the processing of a batch of CASes.private void
CasAnnotator_ImplBase. checkTypeSystemChange(CAS aCAS)
Checks it the type system of the given CAS is different from the last type system this component was operating on.private void
CasMultiplier_ImplBase. checkTypeSystemChange(CAS aCAS)
Checks it the type system of the given CAS is different from the last type system this component was operating on.void
AnalysisComponent_ImplBase. collectionProcessComplete()
void
AnalysisComponent. collectionProcessComplete()
Notifies this AnalysisComponent that processing of an entire collection has been completed.boolean
AnalysisComponent. hasNext()
Asks if this AnalysisComponent has another CAS to output.boolean
Annotator_ImplBase. hasNext()
Returns false, since annotators are not allowed to create new CAS instances.AbstractCas
AnalysisComponent. next()
Gets the next output CAS.AbstractCas
Annotator_ImplBase. next()
Throws a UIMA_IllegalStateException, since annotators are not allowed to create new CAS instances.void
AnalysisComponent. process(AbstractCas aCAS)
Inputs a CAS to the AnalysisComponent.void
CasAnnotator_ImplBase. process(AbstractCas aCAS)
abstract void
CasAnnotator_ImplBase. process(CAS aCAS)
Inputs a CAS to the AnalysisComponent.void
CasMultiplier_ImplBase. process(AbstractCas aCAS)
abstract void
CasMultiplier_ImplBase. process(CAS aCAS)
This method should be overriden by subclasses.void
JCasAnnotator_ImplBase. process(AbstractCas aCAS)
abstract void
JCasAnnotator_ImplBase. process(JCas aJCas)
This method should be overriden by subclasses.void
JCasMultiplier_ImplBase. process(AbstractCas aCAS)
abstract void
JCasMultiplier_ImplBase. process(JCas aJCas)
This method should be overridden by subclasses.void
CasAnnotator_ImplBase. typeSystemInit(TypeSystem aTypeSystem)
Informs this annotator that the CAS TypeSystem has changed.void
CasMultiplier_ImplBase. typeSystemInit(TypeSystem aTypeSystem)
Informs this annotator that the CAS TypeSystem has changed. -
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_engine
Methods in org.apache.uima.analysis_engine that throw AnalysisEngineProcessException Modifier and Type Method Description void
AnalysisEngine. batchProcessComplete()
Notifies this AnalysisEngine that processing of a batch has completed.void
AnalysisEngine. collectionProcessComplete()
Notifies this AnalysisEngine that processing of an entire collection has completed.boolean
CasIterator. hasNext()
Checks if there are more CASes to be returned by the iterator.boolean
JCasIterator. hasNext()
Checks if there are more JCASes to be returned by the iterator.CAS
CasIterator. next()
Gets the next CAS from the iterator.JCas
JCasIterator. next()
Gets the next JCAS from the iterator.void
AnalysisEngine. process(AnalysisProcessData aProcessData, ResultSpecification aResultSpec)
Deprecated.This is no longer used by the framework and was never intended for users to call.ProcessTrace
AnalysisEngine. process(CAS aCAS)
Invokes this AnalysisEngine's analysis logic.ProcessTrace
AnalysisEngine. process(CAS aCAS, ResultSpecification aResultSpec)
Invokes this AnalysisEngine's analysis logic.void
AnalysisEngine. process(CAS aCAS, ResultSpecification aResultSpec, ProcessTrace aTrace)
Invokes this AnalysisEngine's analysis logic.ProcessTrace
AnalysisEngine. process(JCas aJCas)
Similar toAnalysisEngine.process(CAS)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.ProcessTrace
AnalysisEngine. process(JCas aJCas, ResultSpecification aResultSpec)
Similar toAnalysisEngine.process(CAS,ResultSpecification)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.void
AnalysisEngine. process(JCas aJCas, ResultSpecification aResultSpec, ProcessTrace aTrace)
Similar toAnalysisEngine.process(CAS, ResultSpecification, ProcessTrace)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.CasIterator
AnalysisEngine. processAndOutputNewCASes(CAS aCAS)
Processes a CAS, possibly producing multiple CASes as a result.JCasIterator
AnalysisEngine. processAndOutputNewCASes(JCas aJCAS)
Processes a JCAS, possibly producing multiple JCASes as a result. -
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_engine.asb
Methods in org.apache.uima.analysis_engine.asb that throw AnalysisEngineProcessException Modifier and Type Method Description CasIterator
ASB. process(CAS aCAS)
Invokes the processing of the aggregate on the given input CAS. -
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_engine.asb.impl
Methods in org.apache.uima.analysis_engine.asb.impl that throw AnalysisEngineProcessException Modifier and Type Method Description void
FlowControllerContainer. collectionProcessComplete()
FlowContainer
FlowControllerContainer. computeFlow(CAS aCAS)
Invokes the FlowController's computeFlow method, returning a Flow object that routes the given CAS through this aggregate.boolean
ASB_impl.AggregateCasIterator. hasNext()
Returns whether there are any more CASes to be returned.FlowContainer
FlowContainer. newCasProduced(CAS newCAS, java.lang.String producedBy)
CAS
ASB_impl.AggregateCasIterator. next()
Gets the next output CAS.Step
FlowContainer. next()
CasIterator
ASB_impl. process(CAS aCAS)
private CAS
ASB_impl.AggregateCasIterator. processUntilNextOutputCas()
This is the main execution control method for the aggregate AE.void
FlowControllerContainer. removeAnalysisEngines(java.util.Collection<java.lang.String> aKeys)
Notifies this FlowController that some Analysis Engines are no longer available to route CASes to.Constructors in org.apache.uima.analysis_engine.asb.impl that throw AnalysisEngineProcessException Constructor Description AggregateCasIterator(CAS inputCas)
Creates a new AggregateCasIterator for the given input CAS. -
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_engine.impl
Methods in org.apache.uima.analysis_engine.impl that throw AnalysisEngineProcessException Modifier and Type Method Description void
AggregateAnalysisEngine_impl. batchProcessComplete()
void
AnalysisEngineImplBase. batchProcessComplete()
void
AnalysisEngineProcessorAdapter. batchProcessComplete()
default void
AnalysisEngineProcessorStub. batchProcessComplete()
Notify the stub that all items in the batch have been processed.void
MultiprocessingAnalysisEngine_impl. batchProcessComplete()
void
PearAnalysisEngineWrapper. batchProcessComplete()
void
PrimitiveAnalysisEngine_impl. batchProcessComplete()
void
UimacppAnalysisEngineImpl. batchProcessComplete()
protected CAS
PrimitiveAnalysisEngine_impl. callAnalysisComponentNext()
Calls the Analysis Component's next() method.protected CAS
UimacppAnalysisEngineImpl. callAnalysisComponentNext()
Calls the Analysis Component's next() method.protected void
PrimitiveAnalysisEngine_impl. callAnalysisComponentProcess(CAS aCAS)
Calls the Analysis Component's process method.protected void
UimacppAnalysisEngineImpl. callAnalysisComponentProcess(CAS aCAS)
Calls the Analysis Component's process method.void
AggregateAnalysisEngine_impl. collectionProcessComplete()
void
AnalysisEngineImplBase. collectionProcessComplete()
void
AnalysisEngineProcessorAdapter. collectionProcessComplete()
default void
AnalysisEngineProcessorStub. collectionProcessComplete()
Notify the stub that all items in the collection have been processed.void
MultiprocessingAnalysisEngine_impl. collectionProcessComplete()
void
PearAnalysisEngineWrapper. collectionProcessComplete()
void
PrimitiveAnalysisEngine_impl. collectionProcessComplete()
void
UimacppAnalysisEngineImpl. collectionProcessComplete()
private AnalysisEngine
MultiprocessingAnalysisEngine_impl. getAeFromPool()
boolean
EmptyCasIterator. hasNext()
boolean
JCasIteratorWrapper. hasNext()
boolean
PrimitiveAnalysisEngine_impl.AnalysisComponentCasIterator. hasNext()
boolean
UimacppAnalysisEngineImpl.TafAnalysisComponentCasIterator. hasNext()
CAS
EmptyCasIterator. next()
JCas
JCasIteratorWrapper. next()
CAS
PrimitiveAnalysisEngine_impl.AnalysisComponentCasIterator. next()
CAS
UimacppAnalysisEngineImpl.TafAnalysisComponentCasIterator. next()
void
AnalysisEngineImplBase. process(AnalysisProcessData aProcessData, ResultSpecification aResultSpec)
Deprecated.ProcessTrace
AnalysisEngineImplBase. process(CAS aCAS)
ProcessTrace
AnalysisEngineImplBase. process(CAS aCAS, ResultSpecification aResultSpec)
void
AnalysisEngineImplBase. process(CAS aCAS, ResultSpecification aResultSpec, ProcessTrace aTrace)
ProcessTrace
AnalysisEngineImplBase. process(JCas aJCas)
ProcessTrace
AnalysisEngineImplBase. process(JCas aJCas, ResultSpecification aResultSpec)
void
AnalysisEngineImplBase. process(JCas aJCas, ResultSpecification aResultSpec, ProcessTrace aTrace)
void
AnalysisEngineProcessorStub. process(CAS aCAS)
Performs service call to process an entity.ProcessTrace
MultiprocessingAnalysisEngine_impl. process(CAS aCAS)
ProcessTrace
MultiprocessingAnalysisEngine_impl. process(CAS aCAS, ResultSpecification aResultSpec)
void
MultiprocessingAnalysisEngine_impl. process(CAS aCAS, ResultSpecification aResultSpec, ProcessTrace aTrace)
ProcessTrace
MultiprocessingAnalysisEngine_impl. process(JCas aJCas)
ProcessTrace
MultiprocessingAnalysisEngine_impl. process(JCas aJCas, ResultSpecification aResultSpec)
void
MultiprocessingAnalysisEngine_impl. process(JCas aJCas, ResultSpecification aResultSpec, ProcessTrace aTrace)
CasIterator
AggregateAnalysisEngine_impl. processAndOutputNewCASes(CAS aCAS)
CasIterator
AnalysisEngineImplBase. processAndOutputNewCASes(CAS aCAS)
JCasIterator
AnalysisEngineImplBase. processAndOutputNewCASes(JCas aJCas)
Default implementation of processAndOutputNewCASes(JCas) method.CasIterator
AnalysisEngineProcessorAdapter. processAndOutputNewCASes(CAS aCAS)
CasIterator
MultiprocessingAnalysisEngine_impl. processAndOutputNewCASes(CAS aCAS)
JCasIterator
MultiprocessingAnalysisEngine_impl. processAndOutputNewCASes(JCas aJCas)
CasIterator
PearAnalysisEngineWrapper. processAndOutputNewCASes(CAS aCAS)
CasIterator
PrimitiveAnalysisEngine_impl. processAndOutputNewCASes(CAS aCAS)
CasIterator
UimacppAnalysisEngineImpl. processAndOutputNewCASes(CAS aCAS)
-
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_engine.impl.compatibility
Methods in org.apache.uima.analysis_engine.impl.compatibility that throw AnalysisEngineProcessException Modifier and Type Method Description void
AnnotatorAdapter. batchProcessComplete()
void
CasConsumerAdapter. batchProcessComplete()
void
CollectionReaderAdapter. batchProcessComplete()
void
AnnotatorAdapter. checkTypeSystemChange(AbstractCas aCAS)
Checks it the type system of the given CAS is different from the last type system this component was operating on.void
CasConsumerAdapter. checkTypeSystemChange(AbstractCas aCAS)
void
CollectionReaderAdapter. checkTypeSystemChange(AbstractCas aCAS)
void
AnnotatorAdapter. collectionProcessComplete()
void
CasConsumerAdapter. collectionProcessComplete()
void
CollectionReaderAdapter. collectionProcessComplete()
boolean
AnnotatorAdapter. hasNext()
boolean
CasConsumerAdapter. hasNext()
boolean
CollectionReaderAdapter. hasNext()
AbstractCas
AnnotatorAdapter. next()
AbstractCas
CasConsumerAdapter. next()
AbstractCas
CollectionReaderAdapter. next()
void
CollectionReaderAdapter. next(AbstractCas aEmptyCas)
void
AnnotatorAdapter. process(AbstractCas aCAS)
void
CasConsumerAdapter. process(AbstractCas aCAS)
void
CollectionReaderAdapter. process(AbstractCas aCAS)
-
Uses of AnalysisEngineProcessException in org.apache.uima.analysis_engine.service.impl
Methods in org.apache.uima.analysis_engine.service.impl that throw AnalysisEngineProcessException Modifier and Type Method Description void
AnalysisEngineServiceAdapter. batchProcessComplete()
void
AnalysisEngineServiceAdapter. collectionProcessComplete()
CasIterator
AnalysisEngineServiceAdapter. processAndOutputNewCASes(CAS aCAS)
-
Uses of AnalysisEngineProcessException in org.apache.uima.collection.impl.cpm.container.deployer.socket
Methods in org.apache.uima.collection.impl.cpm.container.deployer.socket that throw AnalysisEngineProcessException Modifier and Type Method Description ProcessingResourceMetaData
SocketTransport. getProcessingResourceMetaData(java.net.Socket aSocket)
Returns metadata associated with the fenced CasProcessor.CAS
SocketTransport. process(java.net.Socket aSocket, CAS aCas)
Invokes fenced CasProcessor. -
Uses of AnalysisEngineProcessException in org.apache.uima.flow
Methods in org.apache.uima.flow that throw AnalysisEngineProcessException Modifier and Type Method Description void
FlowController_ImplBase. batchProcessComplete()
void
FlowController. batchProcessComplete()
Completes the processing of a batch of CASes.private void
CasFlowController_ImplBase. checkTypeSystemChange(CAS aCAS)
void
FlowController_ImplBase. collectionProcessComplete()
void
FlowController. collectionProcessComplete()
Notifies this component that processing of an entire collection has been completed.Flow
CasFlowController_ImplBase. computeFlow(AbstractCas aCAS)
Overriden to check thataCAS
is an instanceofCAS
.abstract Flow
CasFlowController_ImplBase. computeFlow(CAS aCAS)
This method must be overriden by subclasses.Flow
FlowController. computeFlow(AbstractCas aCAS)
Invokes this FlowController on a CAS.Flow
JCasFlowController_ImplBase. computeFlow(AbstractCas aCAS)
Overriden to check thataCAS
is an instanceofJCas
.abstract Flow
JCasFlowController_ImplBase. computeFlow(JCas aJCas)
This method must be overriden by subclasses.Flow
CasFlow_ImplBase. newCasProduced(AbstractCas newCas, java.lang.String producedBy)
Overriden to check thatnewCas
is an instanceofCAS
.protected Flow
CasFlow_ImplBase. newCasProduced(CAS newCas, java.lang.String producedBy)
By default, throws an exception to indicate this this Flow object does not support new CASes being produced in the middle of the flow.Flow
Flow. newCasProduced(AbstractCas newCas, java.lang.String producedBy)
Called by the framework if the CAS that is being routed by this Flow has been sent to a CAS Multiplier which has then created a new CAS derived from that original CAS.Flow
JCasFlow_ImplBase. newCasProduced(AbstractCas newCas, java.lang.String producedBy)
Overriden to check thatnewCas
is an instanceofJCas
.protected Flow
JCasFlow_ImplBase. newCasProduced(JCas newCas, java.lang.String producedBy)
By default, throws an exception to indicate this this Flow object does not support new CASes being produced in the middle of the flow.Step
Flow. next()
Gets the next destination for the CAS.void
FlowController_ImplBase. removeAnalysisEngines(java.util.Collection<java.lang.String> aKeys)
Throws an AnalysisEngineProcessException by default.void
FlowController. removeAnalysisEngines(java.util.Collection<java.lang.String> aKeys)
Notifies this FlowController that some Analysis Engines are no longer available to route CASes to.void
CasFlowController_ImplBase. typeSystemInit(TypeSystem aTypeSystem)
This method may be overriden by subclasses. -
Uses of AnalysisEngineProcessException in org.apache.uima.flow.impl
Methods in org.apache.uima.flow.impl that throw AnalysisEngineProcessException Modifier and Type Method Description Flow
CapabilityLanguageFlowController. computeFlow(CAS aCAS)
Flow
FixedFlowController. computeFlow(CAS aCAS)
Flow
FixedFlowController.FixedFlowObject. newCasProduced(CAS newCas, java.lang.String producedBy)
Step
FixedFlowController.FixedFlowObject. next()
void
FixedFlowController. removeAnalysisEngines(java.util.Collection<java.lang.String> aKeys)
-
Uses of AnalysisEngineProcessException in org.apache.uima.internal.util
Methods in org.apache.uima.internal.util that throw AnalysisEngineProcessException Modifier and Type Method Description void
AnalysisEnginePool. batchProcessComplete()
Calls batchProcessComplete on all AEs in pool.void
AnalysisEnginePool. collectionProcessComplete()
Calls collectionProcessComplete on all AEs in pool. -
Uses of AnalysisEngineProcessException in org.apache.uima.tools.components
Methods in org.apache.uima.tools.components that throw AnalysisEngineProcessException Modifier and Type Method Description void
XmlDetagger. process(CAS aCAS)
void
XmlDetagger. typeSystemInit(TypeSystem aTypeSystem)
-
Uses of AnalysisEngineProcessException in org.apache.uima.uimacpp
Methods in org.apache.uima.uimacpp that throw AnalysisEngineProcessException Modifier and Type Method Description void
UimacppAnalysisComponent. batchProcessComplete()
void
UimacppAnalysisComponent. collectionProcessComplete()
boolean
UimacppAnalysisComponent. hasNext()
AbstractCas
UimacppAnalysisComponent. next()
void
UimacppAnalysisComponent. process(AbstractCas aCAS)
void
UimacppAnalysisComponent. process(CAS aCAS)
-