Uses of Interface
org.apache.uima.cas.impl.LowLevelIndex
-
Packages that use LowLevelIndex Package Description org.apache.uima.cas Common Analysis System(CAS) Interfacesorg.apache.uima.cas.impl Implementation and Low-Level API for the CAS Interfaces. -
-
Uses of LowLevelIndex in org.apache.uima.cas
Methods in org.apache.uima.cas that return types with arguments of type LowLevelIndex Modifier and Type Method Description <T extends FeatureStructure>
java.util.Iterator<LowLevelIndex<T>>FSIndexRepository. ll_getIndexes()
Get all indexes in this repository as low level indexes -
Uses of LowLevelIndex in org.apache.uima.cas.impl
Classes in org.apache.uima.cas.impl that implement LowLevelIndex Modifier and Type Class Description class
FsIndex_annotation<T extends AnnotationFS>
Implementation of annotation indexes.class
FsIndex_bag<T extends FeatureStructure>
Used for UIMA FS Bag Indexes Uses ObjHashSet to hold instances of FeatureStructuresclass
FsIndex_flat<T extends FeatureStructure>
Common part of flattened indexes, used for both snapshot iterators and flattened sorted indexes built from passed in instance of FsIndex_iicp(package private) class
FsIndex_iicp<T extends FeatureStructure>
FsIndex_iicp (iicp) A pair of an leaf index and an iterator cache.class
FsIndex_set_sorted<T extends FeatureStructure>
Common index impl for set and sorted indexes.class
FsIndex_singletype<T extends FeatureStructure>
The common (among all index kinds - set, sorted, bag) info for an index over 1 type (excluding subtypes) SubClasses FsIndex_bag, FsIndex_flat, FsIndex_set_sorted, define the actual index repository for each kind.class
FsIndex_snapshot<T extends FeatureStructure>
Implementation of light-weight wrapper of normal indexes, which support special kinds of iterators base on the setting of IteratorExtraFunctionFields in org.apache.uima.cas.impl declared as LowLevelIndex Modifier and Type Field Description private LowLevelIndex<T>
SelectFSs_impl. index
private LowLevelIndex<T>
FsIterator_subtypes_snapshot. indexForComparator
protected LowLevelIndex<T>
FsIterator_multiple_indexes. main_idx
Methods in org.apache.uima.cas.impl that return LowLevelIndex Modifier and Type Method Description <T extends FeatureStructure>
LowLevelIndex<T>FSIndexRepositoryImpl. getIndex(java.lang.String label)
private LowLevelIndex<T>
SelectFSs_impl. getIndexForView(CASImpl v)
gets the index for a view that corresponds to the specified index by matching the index specs and type codedefault <U extends T>
LowLevelIndex<U>LowLevelIndex. getSubIndex(java.lang.Class<? extends TOP> clazz)
default <U extends T>
LowLevelIndex<U>LowLevelIndex. getSubIndex(Type type)
LowLevelIndex<T>
FilteredIterator. ll_getIndex()
<T extends FeatureStructure>
LowLevelIndex<T>FSIndexRepositoryImpl. ll_getIndex(java.lang.String indexName)
<T extends FeatureStructure>
LowLevelIndex<T>FSIndexRepositoryImpl. ll_getIndex(java.lang.String indexName, int typeCode)
LowLevelIndex<T>
FsIterator_backwards. ll_getIndex()
LowLevelIndex<T>
FsIterator_bag. ll_getIndex()
LowLevelIndex<T>
FsIterator_limited. ll_getIndex()
LowLevelIndex<T>
FsIterator_multiple_indexes. ll_getIndex()
LowLevelIndex<T>
FsIterator_set_sorted2. ll_getIndex()
LowLevelIndex<T>
FsIterator_subtypes_snapshot. ll_getIndex()
<T extends FeatureStructure>
LowLevelIndex<T>LowLevelIndexRepository. ll_getIndex(java.lang.String indexName)
Get an index by its name.<T extends FeatureStructure>
LowLevelIndex<T>LowLevelIndexRepository. ll_getIndex(java.lang.String indexName, int typeCode)
Get an index by a name and type.LowLevelIndex<T>
LowLevelIterator_empty. ll_getIndex()
LowLevelIndex<T>
LowLevelIterator. ll_getIndex()
Get the index for just the top most type of this iterator (excludes subtypes).LowLevelIndex<T>
SelectFSs_impl.SelectFSIterator. ll_getIndex()
LowLevelIndex<T>
Subiterator. ll_getIndex()
Methods in org.apache.uima.cas.impl that return types with arguments of type LowLevelIndex Modifier and Type Method Description java.util.Iterator<LowLevelIndex>
FSIndexRepositoryImpl. ll_getIndexes()
Methods in org.apache.uima.cas.impl with parameters of type LowLevelIndex Modifier and Type Method Description private LowLevelIterator<T>
SelectFSs_impl. plainFsIterator(LowLevelIndex<T> idx, CASImpl v)
Constructors in org.apache.uima.cas.impl with parameters of type LowLevelIndex Constructor Description FsIterator_multiple_indexes(LowLevelIndex<T> main_idx, LowLevelIterator<T>[] iterators, java.util.Comparator<TOP> comparatorMaybeNoTypeWithoutId)
FsIterator_subtypes_snapshot(T[] snapshot, LowLevelIndex<T> index, boolean is_unordered, java.util.Comparator<TOP> comparatorMaybeNoTypeWithoutId)
Alternative source iterator, 1st arg is different (not an "index", just an array) - altSources are unordered, and NoType is ignored - also supports backwards iterators, these are ordered (Maybe fix this in the future - this is not necessarily required)
-