Uses of Interface
org.apache.uima.cas.TypeSystem

Packages that use TypeSystem
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.annotator The Annotator Interfaces, along with supporting interfaces and exception classes. 
org.apache.uima.analysis_engine.impl   
org.apache.uima.cas Common Analysis System (CAS) Interfaces. 
org.apache.uima.cas.admin   
org.apache.uima.cas.impl Implementation and Low-Level API for the CAS Interfaces. 
org.apache.uima.collection Classes and interfaces for collection processing. 
org.apache.uima.collection.base_cpm   
org.apache.uima.collection.impl.cpm.container   
org.apache.uima.examples Examples illustrating how to use the UIMA Framework. 
org.apache.uima.examples.cas Examples of Annotators that use the CAS Interface directly, not the JCAS. 
org.apache.uima.examples.flow   
org.apache.uima.flow   
org.apache.uima.jcas Interfaces for accessing the JCAS. 
org.apache.uima.jcas.impl Provides the classes that support the Java Cas Model (JCM). 
org.apache.uima.tools.components   
org.apache.uima.tools.cvd.tsview   
org.apache.uima.tools.docanalyzer   
org.apache.uima.uimacpp   
org.apache.uima.util Utility classes and interfaces used by UIMA components. 
 

Uses of TypeSystem in org.apache.uima.analysis_component
 

Methods in org.apache.uima.analysis_component with parameters of type TypeSystem
 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 TypeSystem in org.apache.uima.analysis_engine
 

Methods in org.apache.uima.analysis_engine that return TypeSystem
 TypeSystem ResultSpecification.getTypeSystem()
          get the type system associated with this result specification.
 

Methods in org.apache.uima.analysis_engine with parameters of type TypeSystem
 void ResultSpecification.compile(TypeSystem aTypeSystem)
          Deprecated. as of 2.2.2 Now called automatically internally when needed
 ResultSpecification AnalysisEngine.createResultSpecification(TypeSystem aTypeSystem)
          A factory method used to create an instance of ResultSpecification for use with this AnalysisEngine.
 void ResultSpecification.setTypeSystem(TypeSystem ts)
          set the type system associated with this result specification.
 

Uses of TypeSystem in org.apache.uima.analysis_engine.annotator
 

Methods in org.apache.uima.analysis_engine.annotator that return TypeSystem
protected  TypeSystem Annotator_ImplBase.getTypeSystem()
          Deprecated. Gets the TypeSystem that was passed to the most recent call to Annotator_ImplBase.typeSystemInit(TypeSystem).
 

Methods in org.apache.uima.analysis_engine.annotator with parameters of type TypeSystem
 void BaseAnnotator.typeSystemInit(TypeSystem aTypeSystem)
          Informs this annotator that the CAS TypeSystem has changed.
 void Annotator_ImplBase.typeSystemInit(TypeSystem aTypeSystem)
          Deprecated. The only thing this implementation does is store the TypeSystem so that it can be accessed by the Annotator_ImplBase.getTypeSystem() method, and also so that it can be passed back to the Annotator_ImplBase.typeSystemInit(TypeSystem) method by the default implementation of Annotator_ImplBase.reconfigure().
 

Uses of TypeSystem in org.apache.uima.analysis_engine.impl
 

Methods in org.apache.uima.analysis_engine.impl that return TypeSystem
 TypeSystem ResultSpecification_impl.getTypeSystem()
           
 

Methods in org.apache.uima.analysis_engine.impl with parameters of type TypeSystem
 void ResultSpecification_impl.compile(TypeSystem aTypeSystem)
          Deprecated. no longer needed, remove call to this
 ResultSpecification AnalysisEngineImplBase.createResultSpecification(TypeSystem aTypeSystem)
           
 ResultSpecification PearAnalysisEngineWrapper.createResultSpecification(TypeSystem typeSystem)
           
 void ResultSpecification_impl.setTypeSystem(TypeSystem ts)
           
 void AnalysisEngineImplBase.typeSystemInit(TypeSystem aTypeSystem)
          From the CAS Processor interface.
 void PearAnalysisEngineWrapper.typeSystemInit(TypeSystem typeSystem)
           
 

Constructors in org.apache.uima.analysis_engine.impl with parameters of type TypeSystem
ResultSpecification_impl(TypeSystem aTypeSystem)
          Constructor specifying the type system this should always be used in preference to the 0 argument version if the type system is available.
 

Uses of TypeSystem in org.apache.uima.cas
 

Methods in org.apache.uima.cas that return TypeSystem
 TypeSystem CAS.getTypeSystem()
          Return the type system of this CAS instance.
 

Uses of TypeSystem in org.apache.uima.cas.admin
 

Subinterfaces of TypeSystem in org.apache.uima.cas.admin
 interface TypeSystemMgr
          Writable version of type system.
 

Methods in org.apache.uima.cas.admin with parameters of type TypeSystem
static CASMgr CASFactory.createCAS(int initialHeapSize, TypeSystem ts)
          Create a new CASMgr object from a give type system.
static CASMgr CASFactory.createCAS(int initialHeapSize, TypeSystem ts, boolean useJcasCache)
           
static CASMgr CASFactory.createCAS(TypeSystem ts)
          Create a new CASMgr object from a give type system.
static CASMgr CASFactory.createCAS(TypeSystem ts, boolean useJcasCache)
           
 

Uses of TypeSystem in org.apache.uima.cas.impl
 

Classes in org.apache.uima.cas.impl that implement TypeSystem
 class TypeSystemImpl
          Type system implementation.
 

Methods in org.apache.uima.cas.impl that return TypeSystem
 TypeSystem TypeImpl.getTypeSystem()
          Get the type hierarchy that this type belongs to.
 TypeSystem CASImpl.getTypeSystem()
           
 TypeSystem FeatureImpl.getTypeSystem()
          Get the type hierarchy that this feature belongs to.
 

Methods in org.apache.uima.cas.impl with parameters of type TypeSystem
static LinearTypeOrder LinearTypeOrderBuilderImpl.createTypeOrder(int[] typeList, TypeSystem ts)
           
static void XmiCasSerializer.serialize(CAS aCAS, TypeSystem aTargetTypeSystem, java.io.OutputStream aStream)
          Serializes a CAS to an XMI stream.
static void XmiCasSerializer.serialize(CAS aCAS, TypeSystem aTargetTypeSystem, java.io.OutputStream aStream, boolean aPrettyPrint, XmiSerializationSharedData aSharedData)
          Serializes a CAS to an XMI stream.
static void XmiCasSerializer.serialize(CAS aCAS, TypeSystem aTargetTypeSystem, java.io.OutputStream aStream, boolean aPrettyPrint, XmiSerializationSharedData aSharedData, Marker aMarker)
          Serializes a Delta CAS to an XMI stream.
static void TypeSystem2Xml.typeSystem2Xml(TypeSystem aTypeSystem, org.xml.sax.ContentHandler aContentHandler)
          Traverses a TypeSystem and calls SAX events on the specified ContentHandler.
static void TypeSystem2Xml.typeSystem2Xml(TypeSystem aTypeSystem, java.io.OutputStream aOutputStream)
          Converts a TypeSystem object to XML
 

Constructors in org.apache.uima.cas.impl with parameters of type TypeSystem
LinearTypeOrderBuilderImpl(TypeSystem ts)
           
XCASDeserializer(TypeSystem ts)
           
XCASDeserializer(TypeSystem ts, UimaContext uimaContext)
          Create a new deserializer from a type system.
XCASSerializer(TypeSystem ts)
           
XCASSerializer(TypeSystem ts, UimaContext uimaContext)
           
XmiCasDeserializer(TypeSystem ts)
           
XmiCasDeserializer(TypeSystem ts, UimaContext uimaContext)
          Create a new deserializer from a type system.
XmiCasSerializer(TypeSystem ts)
          Creates a new XmiCasSerializer.
XmiCasSerializer(TypeSystem ts, java.util.Map<java.lang.String,java.lang.String> nsUriToSchemaLocationMap)
          Creates a new XmiCasSerializer.
XmiCasSerializer(TypeSystem ts, UimaContext uimaContext)
          Deprecated. Use XmiCasSerializer.XmiCasSerializer(TypeSystem) instead. The UimaContext reference is never used by this implementation.
XmiCasSerializer(TypeSystem ts, UimaContext uimaContext, java.util.Map<java.lang.String,java.lang.String> nsUriToSchemaLocationMap)
          Deprecated. Use XmiCasSerializer.XmiCasSerializer(TypeSystem, Map) instead. The UimaContext reference is never used by this implementation.
 

Uses of TypeSystem in org.apache.uima.collection
 

Methods in org.apache.uima.collection with parameters of type TypeSystem
 void CasConsumer_ImplBase.typeSystemInit(TypeSystem arg0)
           
 void CasInitializer_ImplBase.typeSystemInit(TypeSystem arg0)
          Deprecated.  
 void CollectionReader.typeSystemInit(TypeSystem aTypeSystem)
          Informs this CollectionReader that the CAS TypeSystem has changed.
 void CollectionReader_ImplBase.typeSystemInit(TypeSystem aTypeSystem)
          Default implementation of typeSystemInit, which calls the CAS Initializer's typeSystemInit method if a CAS Initializer is present.
 void CasInitializer.typeSystemInit(TypeSystem aTypeSystem)
          Deprecated. Informs this CasInitializer that the CAS TypeSystem has changed.
 

Uses of TypeSystem in org.apache.uima.collection.base_cpm
 

Methods in org.apache.uima.collection.base_cpm with parameters of type TypeSystem
 void CasObjectProcessor.typeSystemInit(TypeSystem aTypeSystem)
          Informs this CasConsumer that the CAS TypeSystem has changed.
 

Uses of TypeSystem in org.apache.uima.collection.impl.cpm.container
 

Methods in org.apache.uima.collection.impl.cpm.container with parameters of type TypeSystem
 void CasObjectNetworkCasProcessorImpl.typeSystemInit(TypeSystem aTypeSystem)
           
 

Uses of TypeSystem in org.apache.uima.examples
 

Methods in org.apache.uima.examples with parameters of type TypeSystem
 void XmlDetagger.typeSystemInit(TypeSystem aTypeSystem)
           
 

Uses of TypeSystem in org.apache.uima.examples.cas
 

Methods in org.apache.uima.examples.cas with parameters of type TypeSystem
 void PersonTitleAnnotator.typeSystemInit(TypeSystem aTypeSystem)
          Called whenever the CAS type system changes.
 void RegExAnnotator.typeSystemInit(TypeSystem aTypeSystem)
          Acquires references to CAS Type and Feature objects that are later used during the RegExAnnotator.process(CAS) method.
 

Uses of TypeSystem in org.apache.uima.examples.flow
 

Methods in org.apache.uima.examples.flow with parameters of type TypeSystem
 void WhiteboardFlowController2.typeSystemInit(TypeSystem aTypeSystem)
           
 

Uses of TypeSystem in org.apache.uima.flow
 

Methods in org.apache.uima.flow with parameters of type TypeSystem
 void CasFlowController_ImplBase.typeSystemInit(TypeSystem aTypeSystem)
          This method may be overriden by subclasses.
 

Uses of TypeSystem in org.apache.uima.jcas
 

Methods in org.apache.uima.jcas that return TypeSystem
 TypeSystem JCas.getTypeSystem()
          Return the type system of this CAS instance.
 

Uses of TypeSystem in org.apache.uima.jcas.impl
 

Methods in org.apache.uima.jcas.impl that return TypeSystem
 TypeSystem JCasImpl.getTypeSystem()
           
 

Uses of TypeSystem in org.apache.uima.tools.components
 

Methods in org.apache.uima.tools.components with parameters of type TypeSystem
 void XmlDetagger.typeSystemInit(TypeSystem aTypeSystem)
           
 

Uses of TypeSystem in org.apache.uima.tools.cvd.tsview
 

Methods in org.apache.uima.tools.cvd.tsview with parameters of type TypeSystem
 void MainFrame.setTypeSystem(TypeSystem ts)
           
 

Uses of TypeSystem in org.apache.uima.tools.docanalyzer
 

Fields in org.apache.uima.tools.docanalyzer declared as TypeSystem
protected  TypeSystem DocumentAnalyzer.currentTypeSystem
           
 

Methods in org.apache.uima.tools.docanalyzer with parameters of type TypeSystem
 void AnnotationViewerDialog.launchThatViewer(java.lang.String inputDirPath, java.lang.String fileName, TypeSystem typeSystem, java.lang.String[] aTypesToDisplay, boolean javaViewerRBisSelected, boolean javaViewerUCRBisSelected, boolean xmlRBisSelected, java.io.File styleMapFile, java.io.File viewerDirectory)
           
 

Constructors in org.apache.uima.tools.docanalyzer with parameters of type TypeSystem
AnnotationViewerDialog(javax.swing.JFrame aParentFrame, java.lang.String aDialogTitle, PrefsMediator med, java.io.File aStyleMapFile, java.lang.String aPerformanceStats, TypeSystem aTypeSystem, java.lang.String[] aTypesToDisplay, boolean generatedStyleMap, CAS cas)
           
AnnotationViewerDialog(javax.swing.JFrame aParentFrame, java.lang.String aDialogTitle, PrefsMediator med, java.io.File aStyleMapFile, java.lang.String aPerformanceStats, TypeSystem aTypeSystem, java.lang.String[] aTypesToDisplay, java.lang.String interactiveTempFN, boolean javaViewerRBisSelected, boolean javaViewerUCRBisSelected, boolean xmlRBisSelected, CAS cas)
          Create an AnnotationViewer Dialog
 

Uses of TypeSystem in org.apache.uima.uimacpp
 

Methods in org.apache.uima.uimacpp with parameters of type TypeSystem
 void UimacppAnalysisComponent.typeSystemInit(TypeSystem ts)
           
 

Uses of TypeSystem in org.apache.uima.util
 

Methods in org.apache.uima.util with parameters of type TypeSystem
static CAS CasCreationUtils.createCas(CasDefinition casDef, java.util.Properties performanceTuningSettings, TypeSystem typeSystem)
          Create a CAS from a CAS Definition, but reuse the provided TypeSystem object.
static CAS CasCreationUtils.createCas(java.util.Collection<? extends MetaDataObject> aComponentDescriptionsOrMetaData, TypeSystem aTypeSystem, java.util.Properties aPerformanceTuningSettings)
          Creates a new CAS instance for a collection of CAS Processors, which.
static CAS CasCreationUtils.createCas(java.util.Collection<? extends MetaDataObject> aComponentDescriptionsOrMetaData, TypeSystem aTypeSystem, java.util.Properties aPerformanceTuningSettings, ResourceManager aResourceManager)
          Creates a new CAS instance for a collection of CAS Processors, which.
static CAS CasCreationUtils.createCas(TypeSystem aTypeSystem, TypePriorities aTypePriorities, FsIndexDescription[] aFsIndexes, java.util.Properties aPerformanceTuningSettings)
          Creates a new CAS instance that reuses an existing type system.
static CAS CasCreationUtils.createCas(TypeSystem aTypeSystem, TypePriorities aTypePriorities, FsIndexDescription[] aFsIndexes, java.util.Properties aPerformanceTuningSettings, ResourceManager aResourceManager)
          Creates a new CAS instance that reuses an existing type system.
static java.lang.String[] TypeSystemUtil.getAllowedValuesForType(Type aType, TypeSystem aTypeSystem)
          Gets the allowed values for a string subtype.
static void XmlCasSerializer.serialize(CAS aCAS, TypeSystem aTargetTypeSystem, java.io.OutputStream aStream)
          Serializes a CAS to XMI format and writes it to an output stream.
static TypeDescription TypeSystemUtil.type2TypeDescription(Type aType, TypeSystem aTypeSystem)
          Convert a Type to an equivalent TypeDescription.
static TypeSystemDescription TypeSystemUtil.typeSystem2TypeSystemDescription(TypeSystem aTypeSystem)
          Convert a TypeSystem to an equivalent TypeSystemDescription.
 



Copyright © 2012. All Rights Reserved.