Uses of Interface
org.apache.uima.cas.Type
-
Packages that use Type Package Description org.apache.uima.analysis_engine.impl org.apache.uima.cas Common Analysis System(CAS) Interfacesorg.apache.uima.cas.admin org.apache.uima.cas.impl Implementation and Low-Level API for the CAS Interfaces.org.apache.uima.jcas Interfaces for accessing the JCAS.org.apache.uima.jcas.cas JCAS model for built-in CAS typesorg.apache.uima.jcas.impl Provides the classes that support the Java Cas Model (JCM).org.apache.uima.jcas.tcas org.apache.uima.tools.components org.apache.uima.tools.cvd org.apache.uima.tools.cvd.tsview org.apache.uima.tools.jcasgen Describes the format of the generated JCas cover classes for UIMA Version 3.org.apache.uima.tools.viewer org.apache.uima.util Utility classes and interfaces used by UIMA components. -
-
Uses of Type in org.apache.uima.analysis_engine.impl
Fields in org.apache.uima.analysis_engine.impl with type parameters of type Type Modifier and Type Field Description static java.util.List<Type>
ResultSpecification_impl. EMPTY_TYPE_LIST
used for empty type subsumption lists in subtype iterator -
Uses of Type in org.apache.uima.cas
Methods in org.apache.uima.cas that return Type Modifier and Type Method Description Type
CAS. getAnnotationType()
Get the type object for the annotation type.Type
TypeSystem. getArrayType(Type componentType)
Get or Create an array type with component typecomponentType
.default <T extends TOP>
TypeCAS. getCasType(java.lang.Class<T> clazz)
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
FeaturePath. getType(FeatureStructure fs)
Returns the type of the feature path.Type
FeatureStructure. getType()
Get the type of this FS.Type
FSIndex. getType()
Return the type of feature structures this index contains.default Type
FSIterator. getType()
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 Modifier and Type Method Description java.util.Vector<Type>
TypeSystem. getDirectlySubsumedTypes(Type type)
Deprecated.UsegetDirectSubtypes(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 Modifier and Type Method Description void
FSTypeConstraint. add(Type type)
Add a new type to this type constraint.<T extends AnnotationFS>
AnnotationFSCAS. createAnnotation(Type type, int begin, int end)
Create a new annotation.<T extends FeatureStructure>
TCAS. createFS(Type type)
Create a new FeatureStructure.default <T extends FeatureStructure>
FSArray<T>CAS. emptyFSArray(Type type)
default <T extends TOP>
FSIterator<T>CAS. getAllIndexedFS(Type type)
Gets an iterator over all indexed (in this CAS view) FeatureStructures of the specified Type (and any of its subtypes).<T extends FeatureStructure>
FSIterator<T>FSIndexRepository. getAllIndexedFS(Type aType)
Gets an iterator over all indexed (in this View) FeatureStructures of the specified Type (and any of its subtypes).<T extends AnnotationFS>
AnnotationIndex<T>CAS. getAnnotationIndex(Type type)
Get the standard annotation index restricted to a specific annotation type.Type
TypeSystem. getArrayType(Type componentType)
Get or Create an array type with component typecomponentType
.java.util.Vector<Type>
TypeSystem. getDirectlySubsumedTypes(Type type)
Deprecated.UsegetDirectSubtypes(Type)
instead.java.util.List<Type>
TypeSystem. getDirectSubtypes(Type type)
Get a List of the types directly subsumed by a given type.<T extends FeatureStructure>
FSIndex<T>FSIndexRepository. getIndex(java.lang.String label, Type type)
Retrieve an index according to a label and a type.default <T extends TOP>
java.util.Collection<T>CAS. getIndexedFSs(Type type)
Returns an unmodifiable collection of all the FSs that are indexed in this view, in an arbitrary order.<T extends TOP>
java.util.Collection<T>FSIndexRepository. getIndexedFSs(Type type)
Returns an unmodifiable collection of all the FSs of this type and its subtypes, that are indexed in this view, in an arbitrary order.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.default <T extends TOP>
SelectFSs<T>CAS. select(Type type)
<N extends T>
SelectFSs<N>FSIndex. select(Type type)
default boolean
Type. subsumes(Type subtype)
boolean
TypeSystem. subsumes(Type superType, Type subType)
Does one type inherit from the other?default <U extends T>
FSIndex<U>FSIndex. subType(Type type)
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 Modifier and Type Method Description 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 Modifier and Type Method Description 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.cas.impl
Classes in org.apache.uima.cas.impl that implement Type Modifier and Type Class Description class
TypeImpl
The implementation of types in the type system.class
TypeImpl_annot
A version of TypeImpl for Annotations and subtypes of Annotationsclass
TypeImpl_annotBase
A version of TypeImpl for the AnnotationBase type and its subtypesclass
TypeImpl_array
class
TypeImpl_list
class
TypeImpl_primitive
class
TypeImpl_string
String or String Subtypeclass
TypeImpl_stringSubtype
Fields in org.apache.uima.cas.impl declared as Type Modifier and Type Field Description private Type[]
FeatureValuePathImpl. emptyListTypes
private Type
FSIndexComparatorImpl. type
Fields in org.apache.uima.cas.impl with type parameters of type Type Modifier and Type Field Description private java.util.Map<Type,Type>
TypeSystemImpl. arrayComponentTypeToArrayType
Map from array component Type to the corresponding array typeprivate java.util.Map<Type,Type>
TypeSystemImpl. arrayComponentTypeToArrayType
Map from array component Type to the corresponding array typeprivate java.util.Map<Type,FSArray>
CASImpl.SharedViewData. emptyFSArrayMap
Methods in org.apache.uima.cas.impl that return Type Modifier and Type Method Description Type
TypeSystemImpl. addStringSubtype(java.lang.String typeName, java.lang.String[] stringList)
Type
CASImpl. getAnnotationType()
Type
TypeSystemImpl. getArrayType(Type componentType)
Type
TypeImpl_list. getCompoentType()
Type
FeatureImpl. getDomain()
Get the domain type for this feature.Type
TypeSystemImpl. getParent(Type t)
Type
FeatureImpl. getRange()
Get the range type for this feature.Type
FeaturePathImpl. getType(FeatureStructure fs)
Type
FeatureStructureImplC. getType()
Returns the UIMA TypeImpl valueType
FsIndex_iicp. getType()
Type
FsIndex_singletype. getType()
Type
FsIndex_snapshot. getType()
Type
FSIndexComparatorImpl. getType()
Type
LowLevelIterator_empty. getType()
Type
TypeNameSpaceImpl. getType(java.lang.String typeName)
Type
LowLevelTypeSystem. ll_getTypeForCode(int typeCode)
Get a type object for a given code.Type
TypeSystemImpl. ll_getTypeForCode(int typeCode)
Methods in org.apache.uima.cas.impl that return types with arguments of type Type Modifier and Type Method Description java.util.Vector<Type>
TypeSystemImpl. getDirectlySubsumedTypes(Type type)
Get a vector of the types directly subsumed by a given type.java.util.List<Type>
TypeSystemImpl. getDirectSubtypes(Type type)
java.util.List<Type>
TypeSystemImpl. getProperlySubsumedTypes(Type type)
Return the list of all types subsumed by the input type.private java.util.Vector<Type>
CASMgrSerializer. getStringSubtypes(TypeSystemImpl ts)
java.util.Iterator<Type>
TypeSystemImpl. getTypeIterator()
Get an iterator over all types, in no particular order.java.util.Iterator<Type>
TypeSystemImpl. iterator()
Methods in org.apache.uima.cas.impl with parameters of type Type Modifier and Type Method Description void
FSTypeConstraintImpl. add(Type type)
(package private) TypeImpl_array
TypeSystemImpl. addArrayType(Type componentType, SlotKinds.SlotKind slotKind, boolean isHeapStoredArray, java.lang.Class<?> javaClass)
Add an array type.Feature
TypeSystemImpl. addFeature(java.lang.String featureName, Type domainType, Type rangeType)
Feature
TypeSystemImpl. addFeature(java.lang.String shortFeatName, Type domainType, Type rangeType, boolean multipleReferencesAllowed)
TypeImpl
TypeSystemImpl. addType(java.lang.String typeName, Type superType)
Add a new type to the type system.(package private) void
TypeImpl. checkExistingFeatureCompatible(FeatureImpl existingFi, Type range)
private boolean
FSIndexComparatorImpl. checkType(Type t)
void
CASImpl. checkTypingConditions(Type domType, Type ranType, Feature feat)
Check the range is appropriate for this type/feature.static int
TypeSystemUtils. classifyType(Type type)
Classify types into FS type, array type etc.private TypeImpl
TypeSystemImpl. computeArrayParentFromComponentType(Type componentType)
Given a component type, return the parent type of the corresponding array type, without needing the corresponding array type to exist (yet).Annotation
CASImpl. createAnnotation(Type type, int begin, int end)
<T extends FeatureStructure>
TCASImpl. createFS(Type type)
Create the appropriate Feature Structure Java instance - from whatever the generator for this type specifies.CommonArrayFS
CASImpl. emptyArray(Type type)
<T extends FeatureStructure>
FSArray<T>CASImpl. emptyFSArray(Type type)
<T extends FeatureStructure>
LowLevelIterator<T>FSIndexRepositoryImpl. getAllIndexedFS(Type type)
private <T extends FeatureStructure>
voidFSIndexRepositoryImpl. getAllIndexedFS(Type type, java.util.List<LowLevelIterator<T>> iteratorList)
<T extends AnnotationFS>
AnnotationIndex<T>CASImpl. getAnnotationIndex(Type type)
Type
TypeSystemImpl. getArrayType(Type componentType)
private static java.lang.String
FSIndexRepositoryImpl. getAutoIndexNameForType(Type type)
java.util.Vector<Type>
TypeSystemImpl. getDirectlySubsumedTypes(Type type)
Get a vector of the types directly subsumed by a given type.java.util.List<Type>
TypeSystemImpl. getDirectSubtypes(Type type)
private FeatureImpl
TypeSystemImpl. getFeature(Type type, java.lang.String featureShortName)
<T extends FeatureStructure>
FSIndex<T>FSIndexRepositoryImpl. getIndex(java.lang.String label, Type type)
<T extends TOP>
java.util.Collection<T>FSIndexRepositoryImpl. getIndexedFSs(Type type)
java.util.Vector<Feature>
TypeSystemImpl. getIntroFeatures(Type type)
Type
TypeSystemImpl. getParent(Type t)
java.util.List<Type>
TypeSystemImpl. getProperlySubsumedTypes(Type type)
Return the list of all types subsumed by the input type.(package private) static SlotKinds.SlotKind
TypeSystemImpl. getSlotKindFromType(Type rangeType)
Given a range type, return the corresponding slot kind string -> Slot_StrRef, long and double -> ...Ref boolean, byte, int, short, float, -> withoutRefdefault <U extends T>
LowLevelIndex<U>LowLevelIndex. getSubIndex(Type type)
private int
XmiCasDeserializer.XmiCasDeserializerHandler. handleFeatMultiValueFromName(Type type, TOP fs, java.lang.String featName, java.util.ArrayList<java.lang.String> featVals)
called from endElement after collecting non-byte array element instances into a string list for a particular array or list feature (excluding oots and deferred FSs)private void
XCASDeserializer.XCASDeserializerHandler. handleFeature(Type type, TOP fs, java.lang.String featName, java.lang.String featValIn, boolean lenient)
boolean
CASImpl. isAbstractArrayType(Type type)
boolean
TypeSystemImpl. isAnnotationBaseOrSubtype(Type type)
boolean
TypeSystemImpl. isAnnotationOrSubtype(Type type)
boolean
CASImpl. isAnnotationType(Type t)
boolean
CASImpl. isArrayType(Type type)
boolean
CASImpl. isBooleanArrayType(Type type)
boolean
CASImpl. isBooleanType(Type type)
boolean
CASImpl. isByteArrayType(Type type)
boolean
CASImpl. isByteType(Type type)
boolean
CASImpl. isDoubleArrayType(Type type)
boolean
CASImpl. isDoubleType(Type type)
boolean
CASImpl. isFloatArrayType(Type type)
boolean
CASImpl. isFloatType(Type type)
boolean
CASImpl. isFSArrayType(Type type)
boolean
TypeSystemImpl. isInInt(Type rangeType)
boolean
CASImpl. isIntArrayType(Type type)
boolean
CASImpl. isIntType(Type type)
boolean
CASImpl. isLongArrayType(Type type)
boolean
CASImpl. isLongType(Type type)
static TypeSystemUtils.PathValid
TypeSystemUtils. isPathValid(Type type, java.util.List<java.lang.String> path)
Given a starting Type and a list of features representing a feature path, checks if a feature path is valid for a given type.boolean
CASImpl. isPrimitiveArrayType(Type type)
boolean
CASImpl. isShortArrayType(Type type)
boolean
CASImpl. isShortType(Type type)
boolean
CASImpl. isStringArrayType(Type type)
boolean
CASImpl. isStringType(Type type)
boolean
LinearTypeOrderBuilderImpl.TotalTypeOrder. lessThan(Type t1, Type t2)
<T extends FeatureStructure>
LowLevelIterator<T>FSIndexRepositoryImpl. ll_getAllIndexedFS(Type type)
int
LowLevelTypeSystem. ll_getCodeForType(Type type)
Get the code of an existing type object.int
TypeSystemImpl. ll_getCodeForType(Type type)
(package private) void
TypeSystemImpl. newTypeCheckNoInheritanceFinalCheck(java.lang.String typeName, Type superType)
(package private) void
TypeSystemImpl. newTypeChecks(java.lang.String typeName, Type superType)
TypeImpl
TypeSystemImpl. refreshType(Type t)
void
FSIndexRepositoryImpl. removeAllExcludingSubtypes(Type type)
Remove all instances of a particular type (but not its subtypes) from all indexesvoid
FSIndexRepositoryImpl. removeAllIncludingSubtypes(Type type)
Remove all instances of a particular type (including its subtypes) from all indexesdefault <N extends T>
SelectFSs<N>LowLevelIndex. select(Type type)
void
TypeSystemImpl. setFeatureFinal(Type type)
void
TypeSystemImpl. setInheritanceFinal(Type type)
void
FSIndexComparatorImpl. setType(Type type)
private static void
TypeSystemImpl. setTypeFinal(Type type)
java.util.stream.Stream<FsIndex_singletype<TOP>>
FSIndexRepositoryImpl. streamNonEmptyIndexes(Type type)
Stream instances of all of the non-empty indexes themselvesboolean
TypeSystemImpl. subsumes(Type superType, Type subType)
Does one type inherit from the other? There are two versions.<N extends T>
SelectFSs_impl<N>SelectFSs_impl. type(Type uimaType)
void
FeaturePathImpl. typeInit(Type typeAtStartOfFeaturePath)
Constructors in org.apache.uima.cas.impl with parameters of type Type Constructor Description FsIndex_bag(CASImpl cas, Type type, int initialSize, int indexType, FSIndexComparator comparatorForIndexSpecs)
FsIndex_set_sorted(CASImpl cas, Type type, int indexType, FSIndexComparator comparatorForIndexSpecs)
FsIndex_singletype(CASImpl cas, Type type, int indexType, FSIndexComparator comparatorForIndexSpecs)
Constructor for FsIndex_singletype.FSIndexComparatorImpl(Type type, java.util.List<java.lang.Object> keySpecs, IntVector directions)
IndexInfo(CAS cas, java.lang.String indexName, Type type)
-
Uses of Type in org.apache.uima.jcas
Methods in org.apache.uima.jcas that return Type Modifier and Type Method Description Type
JCas. getCasType(int i)
Given Foo.type, return the corresponding CAS Type object.Type
JCas. getCasType(java.lang.Class<? extends FeatureStructure> clazz)
Return the UIMA Type object corresponding to this JCas's JCas cover class (Note: different JCas's, with different type systems, may share the same cover class impl)Type
JCas. getRequiredType(java.lang.String s)
Methods in org.apache.uima.jcas with parameters of type Type Modifier and Type Method Description default <T extends TOP>
FSIterator<T>JCas. getAllIndexedFS(Type type)
Gets an iterator over all indexed FeatureStructures of the specified Type (and any of its subtypes).<T extends TOP>
FSIterator<T>JFSIndexRepository. getAllIndexedFS(Type aType)
Gets an iterator over all indexed FeatureStructures of the specified Type (and any of its subtypes).<T extends Annotation>
AnnotationIndex<T>JCas. getAnnotationIndex(Type type)
Get the standard annotation index restricted to a specific annotation type.default <T extends TOP>
java.util.Collection<T>JCas. getIndexedFSs(Type type)
Returns an unmodifiable collection of all the FSs that are indexed in this view, in an arbitrary order.Feature
JCas. getRequiredFeature(Type t, java.lang.String s)
default Feature
JCas. getRequiredFeatureDE(Type t, java.lang.String s, java.lang.String rangeName, boolean featOkTst)
Deprecated.default <N extends TOP>
SelectFSs<N>JCas. select(Type type)
-
Uses of Type in org.apache.uima.jcas.cas
Fields in org.apache.uima.jcas.cas declared as Type Modifier and Type Field Description Type
TOP_Type. casType
Deprecated.the Cas Type associated with this Java Cas Model classMethods in org.apache.uima.jcas.cas with parameters of type Type Modifier and Type Method Description <U extends T>
SelectFSs<U>FSList. select(Type filterByType)
Treat an FSArray as a source for SelectFSs.default <U extends T>
SelectFSs<U>SelectViaCopyToArray. select(Type filterByType)
Treat an FSArray as a source for SelectFSs.Constructors in org.apache.uima.jcas.cas with parameters of type Type Constructor Description AnnotationBase_Type(JCas jcas, Type casType)
Deprecated.TOP_Type(JCas jcas, Type casType)
Deprecated.TOP_Type(JCas jcas, Type casType, boolean installGenerator)
Deprecated. -
Uses of Type in org.apache.uima.jcas.impl
Methods in org.apache.uima.jcas.impl that return Type Modifier and Type Method Description Type
JCasImpl. getCasType(int i)
Type
JCasImpl. getCasType(java.lang.Class<? extends FeatureStructure> clazz)
Return the UIMA Type object corresponding to this JCas's JCas cover class (Note: different JCas's, with different type systems, may share the same cover class impl)Type
JCasImpl. getRequiredType(java.lang.String s)
Methods in org.apache.uima.jcas.impl with parameters of type Type Modifier and Type Method Description TOP
JCasImpl. createFS(Type type)
<T extends TOP>
FSIterator<T>JFSIndexRepositoryImpl. getAllIndexedFS(Type aType)
<T extends Annotation>
AnnotationIndex<T>JCasImpl. getAnnotationIndex(Type type)
Feature
JCasImpl. getRequiredFeature(Type t, java.lang.String s)
-
Uses of Type in org.apache.uima.jcas.tcas
Constructors in org.apache.uima.jcas.tcas with parameters of type Type Constructor Description Annotation_Type(JCas jcas, Type casType)
Deprecated. -
Uses of Type in org.apache.uima.tools.components
Fields in org.apache.uima.tools.components declared as Type Modifier and Type Field Description private Type
XmlDetagger. sourceDocInfoType
-
Uses of Type in org.apache.uima.tools.cvd
Fields in org.apache.uima.tools.cvd declared as Type Modifier and Type Field Description private Type
IndexTreeNode. type
The type.private Type
TypeTreeNode. type
The type.Methods in org.apache.uima.tools.cvd that return Type Modifier and Type Method Description Type
IndexTreeNode. getType()
Returns the type.Type
TypeTreeNode. getType()
Returns the type.Methods in org.apache.uima.tools.cvd with parameters of type Type Modifier and Type Method Description private static void
AnnotationDisplayCustomizationFrame. addChildren(javax.swing.tree.DefaultMutableTreeNode node, Type type, TypeSystem ts)
Adds the children.private javax.swing.tree.DefaultMutableTreeNode
MainFrame. createTypeTree(Type type, TypeSystem ts, java.lang.String label, FSIndexRepository ir)
Creates the type tree.(package private) int
FSTreeModel. getNodeType(Type type)
Gets the node type.Constructors in org.apache.uima.tools.cvd with parameters of type Type Constructor Description IndexTreeNode(java.lang.String name, Type type, int size)
Instantiates a new index tree node.TypeTreeNode(Type type, java.lang.String label, int size)
Instantiates a new type tree node. -
Uses of Type in org.apache.uima.tools.cvd.tsview
Fields in org.apache.uima.tools.cvd.tsview declared as Type Modifier and Type Field Description private Type
MainFrame. selectedType
The selected type.private Type
FeatureTableModel. type
The type.Methods in org.apache.uima.tools.cvd.tsview with parameters of type Type Modifier and Type Method Description private javax.swing.tree.DefaultMutableTreeNode
MainFrame. createTypeTree(Type type)
Creates the type tree.void
FeatureTableModel. setType(Type type)
Sets the type.Constructors in org.apache.uima.tools.cvd.tsview with parameters of type Type Constructor Description FeatureTableModel(Type type)
Constructor for FeatureTableModel. -
Uses of Type in org.apache.uima.tools.jcasgen
Fields in org.apache.uima.tools.jcasgen declared as Type Modifier and Type Field Description private Type
Jg. casStringType
The cas string type.private Type
Jg. tcasAnnotationType
The tcas annotation type. -
Uses of Type in org.apache.uima.tools.viewer
Fields in org.apache.uima.tools.viewer declared as Type Modifier and Type Field Description private Type
CasAnnotationViewer. fsArrayType
The fs array type.private Type
CasAnnotationViewer. stringType
The string type.private Type
CasAnnotationViewer.TypeTreeNodeObject. type
The type.Fields in org.apache.uima.tools.viewer with type parameters of type Type Modifier and Type Field Description private java.util.Map<Type,javax.swing.JRadioButton>
CasAnnotationViewer. typeRadioButtonMap
The type radio button map.private java.util.Map<Type,javax.swing.JCheckBox>
CasAnnotationViewer. typeToCheckBoxMap
The type to check box map.Methods in org.apache.uima.tools.viewer that return Type Modifier and Type Method Description Type
CasAnnotationViewer.TypeTreeNodeObject. getType()
Gets the type.Constructors in org.apache.uima.tools.viewer with parameters of type Type Constructor Description TypeTreeNodeObject(Type inType)
Instantiates a new type tree node object. -
Uses of Type in org.apache.uima.util
Methods in org.apache.uima.util with parameters of type Type Modifier and Type Method Description 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 aType
to an equivalentTypeDescription
.
-