Uses of Interface
org.apache.uima.cas.CommonArrayFS
-
Packages that use CommonArrayFS 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 types -
-
Uses of CommonArrayFS in org.apache.uima.cas
Subinterfaces of CommonArrayFS in org.apache.uima.cas Modifier and Type Interface Description interface
ArrayFS<E extends FeatureStructure>
Feature structure array interface.interface
BooleanArrayFS
Boolean array interface.interface
ByteArrayFS
Byte array interface.interface
DoubleArrayFS
Double array interface.interface
FloatArrayFS
Interface for CAS float arrays.interface
IntArrayFS
Interface for CAS int arrays.interface
LongArrayFS
Long array interface.interface
ShortArrayFS
Short array interface.interface
StringArrayFS
String array interface.Methods in org.apache.uima.cas that return CommonArrayFS Modifier and Type Method Description default <T extends TOP>
CommonArrayFS<T>CAS. emptyArray(java.lang.Class<T> clazz)
Methods in org.apache.uima.cas with parameters of type CommonArrayFS Modifier and Type Method Description void
CommonArrayFS. copyValuesFrom(CommonArrayFS<E> v)
Copy values from another array of the same kind -
Uses of CommonArrayFS in org.apache.uima.cas.impl
Subinterfaces of CommonArrayFS in org.apache.uima.cas.impl Modifier and Type Interface Description interface
BooleanArrayFSImpl
Deprecated.use BooleanArray insteadinterface
ByteArrayFSImpl
Deprecated.use ByteArray insteadinterface
CommonArrayFSImpl
Deprecated.interface
DoubleArrayFSImpl
Deprecated.use DoubleArray insteadinterface
FloatArrayFSImpl
Deprecated.use FloatArray insteadinterface
IntArrayFSImpl
Deprecated.use IntegerArray insteadinterface
LongArrayFSImpl
Deprecated.use LongArray insteadinterface
ShortArrayFSImpl
Deprecated.use ShortArray insteadinterface
StringArrayFSImpl
Deprecated.use StringArray insteadMethods in org.apache.uima.cas.impl that return CommonArrayFS Modifier and Type Method Description static CommonArrayFS
CASImpl. copyArray(TOP srcArray)
private CommonArrayFS
XmiCasDeserializer.XmiCasDeserializerHandler. createNewArray(TypeImpl type, java.util.List<java.lang.String> values)
Create an array in the CAS.private CommonArrayFS
XmiCasDeserializer.XmiCasDeserializerHandler. createOrUpdateArray(TypeImpl arrayType, java.util.List<java.lang.String> values, int xmiId, CommonArrayFS existingArray)
Create or update an array in the CAS If the array is an FSArray, and the elements are not yet deserialized, a lambda expression is put on a "todo" list to be executed after all the FSs are deserialized, to set the value later.CommonArrayFS
CASImpl. emptyArray(Type type)
Methods in org.apache.uima.cas.impl with parameters of type CommonArrayFS Modifier and Type Method Description private CommonArrayFS
XmiCasDeserializer.XmiCasDeserializerHandler. createOrUpdateArray(TypeImpl arrayType, java.util.List<java.lang.String> values, int xmiId, CommonArrayFS existingArray)
Create or update an array in the CAS If the array is an FSArray, and the elements are not yet deserialized, a lambda expression is put on a "todo" list to be executed after all the FSs are deserialized, to set the value later.int
CASImpl. getArraySize(CommonArrayFS fs)
private boolean
BinaryCasSerDes4.Serializer. isNoPrevArrayValue(CommonArrayFS prevCommonArray)
private int
BinaryCasSerDes6. serializeArrayLength(CommonArrayFS array)
private void
XmiCasDeserializer.XmiCasDeserializerHandler. updateExistingArray(java.util.List<java.lang.String> values, CommonArrayFS existingArray)
Update existing array. -
Uses of CommonArrayFS in org.apache.uima.jcas
Methods in org.apache.uima.jcas that return CommonArrayFS Modifier and Type Method Description default <T extends TOP>
CommonArrayFSJCas. emptyArray(java.lang.Class<T> clazz)
-
Uses of CommonArrayFS in org.apache.uima.jcas.cas
Subinterfaces of CommonArrayFS in org.apache.uima.jcas.cas Modifier and Type Interface Description interface
ArrayFSImpl<E extends FeatureStructure>
Deprecated.use FSArray insteadinterface
CommonPrimitiveArray<T>
This interface is implemented by arrays of non-FeatureStructure components boolean, byte, short, int, long, float, double, String, JavaObject Internal Use Only.Classes in org.apache.uima.jcas.cas that implement CommonArrayFS Modifier and Type Class Description class
BooleanArray
JCas class model for BooleanArrayclass
ByteArray
JCas class model for ByteArrayclass
DoubleArray
JCas class model for DoubleArrayclass
FloatArray
Java Cas model for Cas FloatArray.class
FSArray<T extends FeatureStructure>
Java Class model for Cas FSArray type extends FeatureStructure for backwards compatibility when using FSArray with no typing.class
FSArrayList<T extends TOP>
An ArrayList type containing Feature Structures, for UIMA Has all the methods of List Implements the select(...) APIsclass
IntegerArray
The Java Class model corresponding to the Cas IntegerArray_JCasImpl type.class
IntegerArrayList
An ArrayList type containing ints, for UIMA - implements a subset of the List API, Iterable<Integer>, IntListIterator.class
LongArray
JCas class model for LongArrayclass
ShortArray
JCas class model for ShortArrayclass
StringArray
JCas class model for StringArrayMethods in org.apache.uima.jcas.cas with parameters of type CommonArrayFS Modifier and Type Method Description void
BooleanArray. copyValuesFrom(CommonArrayFS<java.lang.Boolean> v)
void
ByteArray. copyValuesFrom(CommonArrayFS<java.lang.Byte> v)
void
DoubleArray. copyValuesFrom(CommonArrayFS v)
void
FloatArray. copyValuesFrom(CommonArrayFS v)
void
FSArray. copyValuesFrom(CommonArrayFS<T> v)
void
FSArrayList. copyValuesFrom(CommonArrayFS v)
void
IntegerArray. copyValuesFrom(CommonArrayFS v)
void
IntegerArrayList. copyValuesFrom(CommonArrayFS<java.lang.Integer> v)
void
LongArray. copyValuesFrom(CommonArrayFS v)
void
ShortArray. copyValuesFrom(CommonArrayFS v)
void
StringArray. copyValuesFrom(CommonArrayFS v)
-