Serialized Form


Package org.apache.uima

Class org.apache.uima.InternationalizedException extends java.lang.Exception implements Serializable

serialVersionUID: 2306587442280738385L

Serialized Fields

mResourceBundleName

java.lang.String mResourceBundleName
The base name of the resource bundle in which the message for this exception is located.


mMessageKey

java.lang.String mMessageKey
An identifier that maps to the message for this exception.


mArguments

java.lang.Object[] mArguments
The arguments to this exception's message, if any. This allows an InternationalizedException to have a compound message, made up of multiple parts that are concatenated in a language-neutral way.


mCause

java.lang.Throwable mCause
The exception that caused this exception to occur.

Class org.apache.uima.InternationalizedRuntimeException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 6387360855459370559L

Serialized Fields

mResourceBundleName

java.lang.String mResourceBundleName
The base name of the resource bundle in which the message for this exception is located.


mMessageKey

java.lang.String mMessageKey
An identifier that maps to the message for this exception.


mArguments

java.lang.Object[] mArguments
The arguments to this exception's message, if any. This allows an InternationalizedRuntimeException to have a compound message, made up of multiple parts that are concatenated in a language-neutral way.


mCause

java.lang.Throwable mCause
The exception that caused this exception to occur.

Class org.apache.uima.UIMA_IllegalArgumentException extends UIMARuntimeException implements Serializable

serialVersionUID: -4820565402946868828L

Class org.apache.uima.UIMA_IllegalStateException extends UIMARuntimeException implements Serializable

serialVersionUID: -8081807814100358556L

Class org.apache.uima.UIMA_UnsupportedOperationException extends UIMARuntimeException implements Serializable

serialVersionUID: 9056907160021698405L

Class org.apache.uima.UIMAException extends InternationalizedException implements Serializable

serialVersionUID: 7521732353239537026L

Class org.apache.uima.UIMARuntimeException extends InternationalizedRuntimeException implements Serializable

serialVersionUID: 6738051692628592989L


Package org.apache.uima.analysis_engine

Class org.apache.uima.analysis_engine.AnalysisEngineProcessException extends ResourceProcessException implements Serializable

serialVersionUID: 2815910374191768858L

Class org.apache.uima.analysis_engine.ResultNotSupportedException extends UIMAException implements Serializable

serialVersionUID: -3483648897752163432L


Package org.apache.uima.analysis_engine.annotator

Class org.apache.uima.analysis_engine.annotator.AnnotatorConfigurationException extends UIMAException implements Serializable

serialVersionUID: -861237180621535840L

Class org.apache.uima.analysis_engine.annotator.AnnotatorContextException extends UIMAException implements Serializable

serialVersionUID: 5021704382907111514L

Class org.apache.uima.analysis_engine.annotator.AnnotatorInitializationException extends UIMAException implements Serializable

serialVersionUID: -7227559164945115624L

Class org.apache.uima.analysis_engine.annotator.AnnotatorProcessException extends UIMAException implements Serializable

serialVersionUID: -1790071433547597840L


Package org.apache.uima.analysis_engine.metadata

Package org.apache.uima.cas

Class org.apache.uima.cas.CASException extends UIMAException implements Serializable

serialVersionUID: 2990279532203726966L

Class org.apache.uima.cas.CASRuntimeException extends UIMARuntimeException implements Serializable

serialVersionUID: 2597111625069248081L

Class org.apache.uima.cas.ParsingException extends java.lang.Exception implements Serializable

serialVersionUID: -8526988900901941980L


Package org.apache.uima.cas_data

Package org.apache.uima.cas.admin

Class org.apache.uima.cas.admin.CASAdminException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 3968205828762300170L

Serialized Fields

error

int error

resource

java.util.ResourceBundle resource

arguments

java.lang.String[] arguments

Package org.apache.uima.cas.impl

Class org.apache.uima.cas.impl.AnnotationImplException extends java.lang.Exception implements Serializable

serialVersionUID: 2924905396059850361L

Serialized Fields

error

int error

resource

java.util.ResourceBundle resource

arguments

java.lang.String[] arguments

Class org.apache.uima.cas.impl.BooleanConstraint extends org.apache.uima.cas.impl.PathConstraint implements Serializable

Serialized Fields

cons

FSBooleanConstraint cons

Class org.apache.uima.cas.impl.CASCompleteSerializer extends java.lang.Object implements Serializable

serialVersionUID: 6841574968081866308L

Serialized Fields

casMgrSer

org.apache.uima.cas.impl.CASMgrSerializer casMgrSer

casSer

org.apache.uima.cas.impl.CASSerializer casSer

Class org.apache.uima.cas.impl.CASMgrSerializer extends java.lang.Object implements Serializable

serialVersionUID: 5549299679614131956L

Serialized Fields

typeOrder

int[] typeOrder

indexNames

java.lang.String[] indexNames
The index identifiers. Note that more than one identifier can refer to the same index.


nameToIndexMap

int[] nameToIndexMap
A mapping from index names to index IDs. We have that indexNames.length == nameToIndexMap.length and for each i in nameToIndexMap, 0 <= i < indexTypes.length.


indexingStrategy

int[] indexingStrategy
For each index, the indexing strategy of that index. Current options are SORTED_INDEX, SET_INDEX and BAG_INDEX. indexingStrategy.length == indexTypes.length.


comparatorIndex

int[] comparatorIndex
For each index, where the corresponding comparator starts in the comparators field. comparatorIndex.length == indexTypes.length.


comparators

int[] comparators
Encodings of the actual comparators. Each comparator occupies an odd number of cells: one for the type, then feature/comparison pairs. The feature is encoded with its type system code, and comparison operations are encoded with STANDARD_COMPARE and REVERSE_STANDARD_COMPARE.


typeNames

java.lang.String[] typeNames
A list of type names (symbol table). Note: numbering of types starts at 1, and we index the names according to their internal code. That means that typeNames[0] == null.


featureNames

java.lang.String[] featureNames
A list of feature names (symbol table). Note: numbering of features starts at 1, , and we index the names according to their internal code. That means that featureNames[0] == null.


typeInheritance

int[] typeInheritance
Type inheritance information: for each type other than the top type, we provide the parent in the inheritance scheme. We use the internal type codes for indexing, which means that cells 0 (no type) and 1 (top type doesn't inherit from anything) are not used.


featDecls

int[] featDecls
Feature declarations. For each feature code i (which is an integer ≥ 1), featDecls[(i-1)*3] is the domain type code, featDecls[(i-1)*3+1] is the range type code, and featDecls[(i-1)*3+2] is the multipleReferencesAllowed flag (0 or 1).


topTypeCode

int topTypeCode
The internal code of the top type. Optional, used for sanity checks.


featureOffsets

int[] featureOffsets
The offsets for features. Optional, used for sanity checks. Since feature numbering starts at 1, the length of the array is 1 + number of features.


stringSubtypes

int[] stringSubtypes
A list of type codes for the string subtypes.


stringSubtypeValues

java.lang.String[] stringSubtypeValues
The string values for the string subtypes. Start and end postions for the values for the individual types are in stringSubtypeValuePos.


stringSubtypeValuePos

int[] stringSubtypeValuePos
The start positions of the string value subarrays of stringSubtypeValues. stringSubtypeValuePos.length == stringSubtypes.length. For each i < stringSubtypes.length, stringSubtypeValuePos[i] is the start of the string values for stringSubtypes[i].


source

int source
Set this appropriately.

Class org.apache.uima.cas.impl.CASSerializer extends java.lang.Object implements Serializable

serialVersionUID: -7972011651957420295L

Serialized Fields

heapArray

int[] heapArray

heapMetaData

int[] heapMetaData

stringTable

java.lang.String[] stringTable

fsIndex

int[] fsIndex

byteHeapArray

byte[] byteHeapArray

shortHeapArray

short[] shortHeapArray

longHeapArray

long[] longHeapArray

Class org.apache.uima.cas.impl.FSBooleanConstraintImpl extends java.lang.Object implements Serializable

Serialized Fields

condition

boolean condition

Class org.apache.uima.cas.impl.LowLevelException extends java.lang.RuntimeException implements Serializable

serialVersionUID: -3115614380676282900L

Serialized Fields

error

int error

resource

java.util.ResourceBundle resource

arguments

java.lang.Object[] arguments

Class org.apache.uima.cas.impl.XCASParsingException extends org.xml.sax.SAXParseException implements Serializable

serialVersionUID: -4915068920369582184L

Serialized Fields

error

int error

resource

java.util.ResourceBundle resource

arguments

java.lang.Object[] arguments

Package org.apache.uima.collection

Class org.apache.uima.collection.CollectionException extends UIMAException implements Serializable

serialVersionUID: -78797158130497524L


Package org.apache.uima.collection.base_cpm

Class org.apache.uima.collection.base_cpm.AbortCasProcessorException extends java.lang.Exception implements Serializable

serialVersionUID: 6667835751923326076L

Class org.apache.uima.collection.base_cpm.AbortCPMException extends java.lang.Exception implements Serializable

serialVersionUID: 3227334551231448553L

Class org.apache.uima.collection.base_cpm.SkipCasException extends java.lang.Exception implements Serializable

serialVersionUID: -1536918949728720979L


Package org.apache.uima.collection.impl.cpm.engine

Class org.apache.uima.collection.impl.cpm.engine.CPMChunkTimeoutException extends ResourceProcessException implements Serializable

serialVersionUID: 358067081843640078L

Serialized Fields

documentURL

java.lang.String documentURL

throttleID

java.lang.String throttleID

docID

long docID

Package org.apache.uima.collection.impl.metadata.cpe

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorCpeObject extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -2424851648116984900L

Serialized Fields

descriptor

CpeComponentDescriptor descriptor

parameters

Parameter[] parameters

runInSeparateProcess

CasProcessorRunInSeperateProcess runInSeparateProcess

filter

CasProcessorFilter filter

errorHandling

CasProcessorErrorHandling errorHandling

checkpoint

CpeCheckpoint checkpoint

deployment

java.lang.String deployment

name

java.lang.String name

deploymentParameters

CasProcessorDeploymentParams deploymentParameters

configurationParameterSettings

CasProcessorConfigurationParameterSettings configurationParameterSettings

parameterSettings

ConfigurationParameterSettings parameterSettings

sofaNameMappings

CpeSofaMappings sofaNameMappings

isParallelizable

boolean isParallelizable

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorDeploymentParamImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 8950620301535742630L

Serialized Fields

name

java.lang.String name

value

java.lang.String value

type

java.lang.String type

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorDeploymentParamsImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 4871710283477856271L

Serialized Fields

params

java.util.ArrayList<E> params

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorErrorHandlingImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 1677062861920690715L

Serialized Fields

timeout

CasProcessorTimeout timeout

errorRateThrashold

CasProcessorErrorRateThreshold errorRateThrashold

maxRestarts

CasProcessorMaxRestarts maxRestarts

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorErrorRateThresholdImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -9214395691914383261L

Serialized Fields

value

java.lang.String value

action

java.lang.String action

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorExecArgImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 6289178406400775873L

Serialized Fields

value

java.lang.String value

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorExecArgsImpl extends java.lang.Object implements Serializable

serialVersionUID: -719956786158518508L

Serialized Fields

args

java.util.ArrayList<E> args

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorExecutableImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 6897788743141912586L

Serialized Fields

executable

java.lang.String executable

dir

java.lang.String dir

args

CasProcessorExecArgs args

envs

java.util.ArrayList<E> envs

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorFilterImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 1879442561195094666L

Serialized Fields

filter

java.lang.String filter

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorMaxRestartsImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 2863741219504239020L

Serialized Fields

value

java.lang.String value

action

java.lang.String action

waitTimeBetweenRetries

int waitTimeBetweenRetries

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorRunInSeperateProcessImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 1074137401279020375L

Serialized Fields

exec

CasProcessorExecutable exec

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorRuntimeEnvParamImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -6750487360818463790L

Serialized Fields

key

java.lang.String key

value

java.lang.String value

Class org.apache.uima.collection.impl.metadata.cpe.CasProcessorTimeoutImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -8276573951395652039L

Serialized Fields

defaultTimeout

java.lang.String defaultTimeout

max

java.lang.String max

Class org.apache.uima.collection.impl.metadata.cpe.CpeCasProcessorsImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -5532660061637797550L

Serialized Fields

casProcessors

java.util.ArrayList<E> casProcessors

dropCasOnException

boolean dropCasOnException

casPoolSize

int casPoolSize

processingUnitThreadCount

int processingUnitThreadCount

inputQueueSize

int inputQueueSize

outputQueueSize

int outputQueueSize

Class org.apache.uima.collection.impl.metadata.cpe.CpeCheckpointImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 9155094513948815121L

Serialized Fields

file

java.lang.String file

time

java.lang.String time

batch

int batch

Class org.apache.uima.collection.impl.metadata.cpe.CpeCollectionReaderCasInitializerImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -6284616239685904940L

Serialized Fields

descriptor

CpeComponentDescriptor descriptor
Deprecated. 

configurationParameterSettings

ConfigurationParameterSettings configurationParameterSettings
Deprecated. 

cfps

CasProcessorConfigurationParameterSettings cfps
Deprecated. 

sofaNameMappings

CpeSofaMappings sofaNameMappings
Deprecated. 

Class org.apache.uima.collection.impl.metadata.cpe.CpeCollectionReaderImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -7663775553359776495L

Serialized Fields

collectionIterator

CpeCollectionReaderIterator collectionIterator

casInitializer

CpeCollectionReaderCasInitializer casInitializer

Class org.apache.uima.collection.impl.metadata.cpe.CpeCollectionReaderIteratorImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -9208074797482603808L

Serialized Fields

descriptor

CpeComponentDescriptor descriptor

configurationParameterSettings

CasProcessorConfigurationParameterSettings configurationParameterSettings

sofaNameMappings

CpeSofaMappings sofaNameMappings

configParameterSettings

ConfigurationParameterSettings configParameterSettings

Class org.apache.uima.collection.impl.metadata.cpe.CpeComponentDescriptorImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 1607312024379882416L

Serialized Fields

mInclude

CpeInclude mInclude

mImport

Import mImport

Class org.apache.uima.collection.impl.metadata.cpe.CpeConfigurationImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 1153815602567127240L

Serialized Fields

startAt

java.lang.String startAt

num2Process

long num2Process

checkpoint

CpeCheckpoint checkpoint

timerImpl

java.lang.String timerImpl

deployAs

java.lang.String deployAs

outputQueue

OutputQueue outputQueue

Class org.apache.uima.collection.impl.metadata.cpe.CpeDescriptionImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -8068920415609241198L

Serialized Fields

collectionReader

CpeCollectionReader collectionReader

casProcessors

CpeCasProcessors casProcessors

cpeConfiguration

CpeConfiguration cpeConfiguration

resourceMgrConfig

CpeResourceManagerConfiguration resourceMgrConfig

Class org.apache.uima.collection.impl.metadata.cpe.CpeIncludeImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: 5694100109656286384L

Serialized Fields

href

java.lang.String href

Class org.apache.uima.collection.impl.metadata.cpe.CpeIntegratedCasProcessorImpl extends org.apache.uima.collection.impl.metadata.cpe.CasProcessorCpeObject implements Serializable

serialVersionUID: 6076012896926381047L

Class org.apache.uima.collection.impl.metadata.cpe.CpeLocalCasProcessorImpl extends org.apache.uima.collection.impl.metadata.cpe.CasProcessorCpeObject implements Serializable

serialVersionUID: -2239520502855587544L

Class org.apache.uima.collection.impl.metadata.cpe.CpeRemoteCasProcessorImpl extends org.apache.uima.collection.impl.metadata.cpe.CasProcessorCpeObject implements Serializable

serialVersionUID: -1290194910813284905L

Class org.apache.uima.collection.impl.metadata.cpe.CpeResourceManagerConfigurationImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -8905321767282361433L

Serialized Fields

href

java.lang.String href

Class org.apache.uima.collection.impl.metadata.cpe.CpeSofaMappingImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -2488866857646083657L

Serialized Fields

componentSofaName

java.lang.String componentSofaName

cpeSofaName

java.lang.String cpeSofaName

Class org.apache.uima.collection.impl.metadata.cpe.CpeSofaMappingsImpl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -4193487704594409253L

Serialized Fields

sofaNameMappings

java.util.ArrayList<E> sofaNameMappings

Class org.apache.uima.collection.impl.metadata.cpe.OutputQueue_impl extends org.apache.uima.resource.metadata.impl.MetaDataObject_impl implements Serializable

serialVersionUID: -3001016349004832820L

Serialized Fields

dequeueTimeout

int dequeueTimeout

queueClass

java.lang.String queueClass

Package org.apache.uima.collection.metadata

Class org.apache.uima.collection.metadata.CpeDescriptorException extends java.lang.Exception implements Serializable

serialVersionUID: -5008821641810813512L


Package org.apache.uima.flow

Package org.apache.uima.pear.tools

Class org.apache.uima.pear.tools.InstallationDescriptor extends java.lang.Object implements Serializable

serialVersionUID: 4884186903126810934L

Serialized Fields

_insdFile

java.io.File _insdFile

_osSpecs

java.util.Properties _osSpecs

_toolkitsSpecs

java.util.Properties _toolkitsSpecs

_frameworkSpecs

java.util.Properties _frameworkSpecs

_mainComponent

InstallationDescriptor.ComponentInfo _mainComponent

_delegateComponents

java.util.Hashtable<K,V> _delegateComponents

_installationActions

java.util.ArrayList<E> _installationActions

Class org.apache.uima.pear.tools.InstallationDescriptor.ActionInfo extends java.lang.Object implements Serializable

serialVersionUID: -3459024334454685063L

Serialized Fields

_name

java.lang.String _name

params

java.util.Properties params

Class org.apache.uima.pear.tools.InstallationDescriptor.ComponentInfo extends java.lang.Object implements Serializable

serialVersionUID: 3269238133625161794L

Serialized Fields

_id

java.lang.String _id

name

java.lang.String name

descFilePath

java.lang.String descFilePath

rootDirPath

java.lang.String rootDirPath

deploymentType

java.lang.String deploymentType

serviceInfo

InstallationDescriptor.ServiceInfo serviceInfo

networkParams

java.util.Hashtable<K,V> networkParams

collIteratorDescFilePath

java.lang.String collIteratorDescFilePath

casInitializerDescFilePath

java.lang.String casInitializerDescFilePath

casConsumerDescFilePath

java.lang.String casConsumerDescFilePath

props

java.util.Properties props

Class org.apache.uima.pear.tools.PackageCreatorException extends InternationalizedException implements Serializable

serialVersionUID: 6261840563059646801L

Class org.apache.uima.pear.tools.PackageInstallerException extends InternationalizedRuntimeException implements Serializable

serialVersionUID: 6261840563059646801L


Package org.apache.uima.resource

Class org.apache.uima.resource.ResourceAccessException extends UIMAException implements Serializable

serialVersionUID: 6192395953611408054L

Class org.apache.uima.resource.ResourceConfigurationException extends UIMAException implements Serializable

serialVersionUID: -412324593044962476L

Class org.apache.uima.resource.ResourceInitializationException extends UIMAException implements Serializable

serialVersionUID: -2521675776941322837L

Class org.apache.uima.resource.ResourceProcessException extends UIMAException implements Serializable

serialVersionUID: 9110678164301621448L

Class org.apache.uima.resource.ResourceServiceException extends UIMAException implements Serializable

serialVersionUID: 3804355176082646151L


Package org.apache.uima.resource.metadata

Package org.apache.uima.search

Class org.apache.uima.search.IndexingException extends UIMAException implements Serializable

serialVersionUID: 5002247376240314251L


Package org.apache.uima.uimacpp

Class org.apache.uima.uimacpp.UimacppException extends java.lang.Exception implements Serializable

serialVersionUID: 378698033899907645L

Serialized Fields

detail

java.lang.Exception detail
Nested exception to hold wrapped exception.


Package org.apache.uima.util

Class org.apache.uima.util.ConcurrentHashMapWithProducer extends java.util.concurrent.ConcurrentHashMap<K,V> implements Serializable

serialVersionUID: 1L

Class org.apache.uima.util.InvalidXMLException extends UIMAException implements Serializable

serialVersionUID: 4470343379909952803L

Class org.apache.uima.util.NameClassPair extends java.lang.Object implements Serializable

serialVersionUID: 3235061764523410003L

Serialized Fields

mName

java.lang.String mName
A name


mClassName

java.lang.String mClassName
A class name

Class org.apache.uima.util.ProgressImpl extends java.lang.Object implements Serializable

serialVersionUID: -1436588781274530622L

Serialized Fields

mUnitType

java.lang.String mUnitType

mCompleted

long mCompleted

mTotal

long mTotal

mApproximate

boolean mApproximate



Copyright © 2006–2014 The Apache Software Foundation. All rights reserved.