Uses of Class
org.apache.uima.jcas.cas.FSArray
-
Packages that use FSArray Package Description org.apache.uima.cas Common Analysis System(CAS) Interfacesorg.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). -
-
Uses of FSArray in org.apache.uima.cas
Methods in org.apache.uima.cas that return FSArray Modifier and Type Method Description default <T extends FeatureStructure>
FSArray<T>CAS. emptyFSArray()
default <T extends FeatureStructure>
FSArray<T>CAS. emptyFSArray(Type type)
-
Uses of FSArray in org.apache.uima.cas.impl
Fields in org.apache.uima.cas.impl with type parameters of type FSArray Modifier and Type Field Description private java.util.Map<Type,FSArray>
CASImpl.SharedViewData. emptyFSArrayMap
private java.util.Map<FSArray,java.util.List<XmiSerializationSharedData.XmiArrayElement>>
XmiSerializationSharedData. ootsArrayElements
V3: Key is FSArray Map from an FSArray to a list ofXmiSerializationSharedData.XmiArrayElement
objects, each of which holds an index and an xmi:id for an out-of-typesystem array element.Methods in org.apache.uima.cas.impl that return FSArray Modifier and Type Method Description <T extends FeatureStructure>
FSArray<T>CASImpl. emptyFSArray()
<T extends FeatureStructure>
FSArray<T>CASImpl. emptyFSArray(Type type)
Methods in org.apache.uima.cas.impl with parameters of type FSArray Modifier and Type Method Description void
XmiSerializationSharedData. addOutOfTypeSystemArrayElement(FSArray fsarray, int index, int xmiId)
Records an out-of-typesystem array element in the XmiSerializationSharedData.private void
XCASSerializer.XCASDocSerializer. encodeFSArray(FSArray fs, org.xml.sax.helpers.AttributesImpl attrs)
private void
XCASSerializer.XCASDocSerializer. enqueueFSArray(FSArray fs)
private void
CasSerializerSupport.CasDocSerializer. enqueueFSArrayElements(FSArray fsArray)
Enqueues all FS reachable from an FSArray.private void
XCASDeserializer.XCASDeserializerHandler. finalizeArrayRefValue(int extId, int pos, FSArray fs)
Same as above, but specialized for array values, not feature slot valuesprivate void
XmiCasDeserializer.XmiCasDeserializerHandler. finalizeFSArrayRefValue(int xmiId, FSArray fsArray, int index)
java.util.List<XmiSerializationSharedData.XmiArrayElement>
XmiSerializationSharedData. getOutOfTypeSystemArrayElements(FSArray fsarray)
Gets information about out-of-typesystem array elements.FeatureStructure
CASImpl. getRefArrayValue(FSArray array, int i)
private void
XmiCasDeserializer.XmiCasDeserializerHandler. maybeSetFsArrayElement(java.util.List<java.lang.String> values, int i, FSArray fsArray)
private void
FeatureStructureImplC. printFSArrayElements(FSArray fsarray, int indent, int incr, java.lang.StringBuilder buf, boolean useShortNames, FeatureStructureImplC.PrintReferences printRefs, boolean isShortForm)
For printing FSArrays; called after printing the type:nnn Only called if ! IS_V2_PRETTY_PRINT, since v2 didn't print the array contents prints the length if the length = 0 that's all otherwise:java.lang.Runnable
CasCompare. sortFSArray(FSArray<?> fsArray)
This is an optional pre-compare operation.Constructors in org.apache.uima.cas.impl with parameters of type FSArray Constructor Description SelectFSs_impl(FSArray source)
-
Uses of FSArray in org.apache.uima.jcas
Methods in org.apache.uima.jcas that return FSArray Modifier and Type Method Description default FSArray
JCas. emptyFSArray()
Retrieve a lazily-created constant from the cas which holds a 0-length instance.default <T extends TOP>
FSArray<T>JCas. emptyFSArray(java.lang.Class<T> clazz)
Retrieve a lazily-created constant from the cas which holds a 0-length instance of a subtype of FSArray.default FSArray
JCas. getFSArray0L()
Deprecated.renamed emptyXXXArray -
Uses of FSArray in org.apache.uima.jcas.cas
Methods in org.apache.uima.jcas.cas that return FSArray Modifier and Type Method Description static <U extends FeatureStructure>
FSArray<U>FSArray. create(JCas jcas, FeatureStructure[] a)
Convenience - create a FSArray from an existing FeatureStructure[]private FSArray
FSArrayList. getFsArray()
getter for fsArray - gets internal use - holds the contentsprivate FSArray<T>
FSHashSet. getFsArray()
getter for fsArray - gets internal use - holds the set of Feature Structuresprivate FSArray<T>
Int2FS. getFsArray()
getter for fsArray - internal useMethods in org.apache.uima.jcas.cas with parameters of type FSArray Modifier and Type Method Description private void
FSArrayList. setFsArray(FSArray v)
setter for fsArray - sets internal use - holds the contentsprivate void
FSHashSet. setFsArray(FSArray<T> v)
setter for fsArray - sets internal use - holds the set of Feature Structuresprivate void
Int2FS. setFsArray(FSArray<T> v)
setter for fsArray - internal use -
Uses of FSArray in org.apache.uima.jcas.impl
Methods in org.apache.uima.jcas.impl that return FSArray Modifier and Type Method Description FSArray
JCasImpl. getFSArray0L()
Deprecated.
-