|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Type | |
---|---|
org.apache.uima.cas | Common Analysis System (CAS) Interfaces. |
org.apache.uima.cas.admin | |
org.apache.uima.examples | |
org.apache.uima.jcas | Interfaces for accessing the JCAS. |
org.apache.uima.jcas.cas | JCAS model for built-in CAS types |
org.apache.uima.jcas.tcas | JCAS model for built-in TCAS types |
org.apache.uima.util | Utility classes and interfaces used by UIMA components. |
Uses of Type in org.apache.uima.cas |
---|
Methods in org.apache.uima.cas that return Type | |
---|---|
Type |
CAS.getAnnotationType()
Get the type object for the annotation type. |
Type |
TypeSystem.getArrayType(Type componentType)
Obtain an array type with component type componentType . |
Type |
Type.getComponentType()
For array types, returns the component type of the array type. |
Type |
Feature.getDomain()
Get the domain type for this feature. |
Type |
TypeSystem.getParent(Type type)
Get the parent type for input type. |
Type |
Feature.getRange()
Get the range type for this feature. |
Type |
TypeSystem.getTopType()
Get the top type, i.e., the root of the type system. |
Type |
FeatureStructure.getType()
Get the type of this FS. |
Type |
FSIndex.getType()
Return the type of feature structures this index contains. |
Type |
FeaturePath.getType(FeatureStructure fs)
Returns the type of the feature path. |
Type |
TypeNameSpace.getType(java.lang.String typeName)
|
Type |
TypeSystem.getType(java.lang.String typeName)
Get a type object for a given type name. |
Methods in org.apache.uima.cas that return types with arguments of type Type | |
---|---|
java.util.Vector<Type> |
TypeSystem.getDirectlySubsumedTypes(Type type)
Deprecated. Use getDirectSubtypes(Type) instead. |
java.util.List<Type> |
TypeSystem.getDirectSubtypes(Type type)
Get a List of the types directly subsumed by a given type. |
java.util.List<Type> |
TypeSystem.getProperlySubsumedTypes(Type type)
Return the list of all types subsumed by the input type. |
java.util.Iterator<Type> |
TypeSystem.getTypeIterator()
Get an iterator over all types, in no particular order. |
Methods in org.apache.uima.cas with parameters of type Type | |
---|---|
void |
FSTypeConstraint.add(Type type)
Add a new type to this type constraint. |
AnnotationFS |
CAS.createAnnotation(Type type,
int begin,
int end)
Create a new annotation. |
FeatureStructure |
CAS.createFS(Type type)
Create a new FeatureStructure. |
FSIterator<FeatureStructure> |
FSIndexRepository.getAllIndexedFS(Type aType)
Gets an iterator over all indexed FeatureStructures of the specified Type (and any of its subtypes). |
AnnotationIndex<AnnotationFS> |
CAS.getAnnotationIndex(Type type)
Get the standard annotation index restricted to a specific annotation type. |
Type |
TypeSystem.getArrayType(Type componentType)
Obtain an array type with component type componentType . |
java.util.Vector<Type> |
TypeSystem.getDirectlySubsumedTypes(Type type)
Deprecated. Use getDirectSubtypes(Type) instead. |
java.util.List<Type> |
TypeSystem.getDirectSubtypes(Type type)
Get a List of the types directly subsumed by a given type. |
FSIndex<FeatureStructure> |
FSIndexRepository.getIndex(java.lang.String label,
Type type)
Retrieve an index according to a label and a type. |
Type |
TypeSystem.getParent(Type type)
Get the parent type for input type. |
java.util.List<Type> |
TypeSystem.getProperlySubsumedTypes(Type type)
Return the list of all types subsumed by the input type. |
void |
FSIndexRepository.removeAllExcludingSubtypes(Type type)
Remove all instances of just this type, excluding subtypes, from all indexes in the repository view. |
void |
FSIndexRepository.removeAllIncludingSubtypes(Type type)
Remove all instances of type, including all subtypes from all indexes in the repository view. |
boolean |
TypeSystem.subsumes(Type superType,
Type subType)
Does one type inherit from the other? |
void |
FeaturePath.typeInit(Type featurePathType)
Check the feature path for the given type and initialize internal structures for faster access to the feature path value. |
Uses of Type in org.apache.uima.cas.admin |
---|
Methods in org.apache.uima.cas.admin that return Type | |
---|---|
Type |
TypeSystemMgr.addStringSubtype(java.lang.String typeName,
java.lang.String[] stringList)
Inherit from String. |
Type |
TypeSystemMgr.addType(java.lang.String typeName,
Type mother)
Add a new type to the type system. |
Type |
FSIndexComparator.getType()
Get the type of this comparator. |
Methods in org.apache.uima.cas.admin with parameters of type Type | |
---|---|
Feature |
TypeSystemMgr.addFeature(java.lang.String featureName,
Type domainType,
Type rangeType)
Add an feature to the type system. |
Feature |
TypeSystemMgr.addFeature(java.lang.String featureName,
Type domainType,
Type rangeType,
boolean multipleReferencesAllowed)
Add an feature to the type system. |
Type |
TypeSystemMgr.addType(java.lang.String typeName,
Type mother)
Add a new type to the type system. |
boolean |
LinearTypeOrder.lessThan(Type t1,
Type t2)
Compare two types. |
void |
TypeSystemMgr.setFeatureFinal(Type type)
Make type feature final in the sense that no new features can be added to this type. |
void |
TypeSystemMgr.setInheritanceFinal(Type type)
Block any further inheritance from this type. |
void |
FSIndexComparator.setType(Type type)
Set the type of this comparator. |
Uses of Type in org.apache.uima.examples |
---|
Constructors in org.apache.uima.examples with parameters of type Type | |
---|---|
SourceDocumentInformation_Type(JCas jcas,
Type casType)
initialize variables to correspond with Cas Type and Features |
Uses of Type in org.apache.uima.jcas |
---|
Methods in org.apache.uima.jcas that return Type | |
---|---|
Type |
JCas.getCasType(int i)
Given Foo.type, return the corresponding CAS Type object. |
Type |
JCas.getRequiredType(java.lang.String s)
|
Methods in org.apache.uima.jcas with parameters of type Type | |
---|---|
FSIterator<TOP> |
JFSIndexRepository.getAllIndexedFS(Type aType)
Gets an iterator over all indexed FeatureStructures of the specified Type (and any of its subtypes). |
AnnotationIndex<Annotation> |
JCas.getAnnotationIndex(Type type)
Get the standard annotation index restricted to a specific annotation type. |
Feature |
JCas.getRequiredFeature(Type t,
java.lang.String s)
|
Feature |
JCas.getRequiredFeatureDE(Type t,
java.lang.String s,
java.lang.String rangeName,
boolean featOkTst)
|
Uses of Type in org.apache.uima.jcas.cas |
---|
Fields in org.apache.uima.jcas.cas declared as Type | |
---|---|
Type |
TOP_Type.casType
the Cas Type associated with this Java Cas Model class |
Uses of Type in org.apache.uima.jcas.tcas |
---|
Constructors in org.apache.uima.jcas.tcas with parameters of type Type | |
---|---|
Annotation_Type(JCas jcas,
Type casType)
|
|
DocumentAnnotation_Type(JCas jcas,
Type casType)
|
Uses of Type in org.apache.uima.util |
---|
Methods in org.apache.uima.util with parameters of type Type | |
---|---|
static java.lang.String[] |
TypeSystemUtil.getAllowedValuesForType(Type aType,
TypeSystem aTypeSystem)
Gets the allowed values for a string subtype. |
static TypeDescription |
TypeSystemUtil.type2TypeDescription(Type aType,
TypeSystem aTypeSystem)
Convert a Type to an equivalent TypeDescription . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |