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 interfaceArrayFS<E extends FeatureStructure>Feature structure array interface.interfaceBooleanArrayFSBoolean array interface.interfaceByteArrayFSByte array interface.interfaceDoubleArrayFSDouble array interface.interfaceFloatArrayFSInterface for CAS float arrays.interfaceIntArrayFSInterface for CAS int arrays.interfaceLongArrayFSLong array interface.interfaceShortArrayFSShort array interface.interfaceStringArrayFSString 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 voidCommonArrayFS. 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 interfaceBooleanArrayFSImplDeprecated.use BooleanArray insteadinterfaceByteArrayFSImplDeprecated.use ByteArray insteadinterfaceCommonArrayFSImplDeprecated.interfaceDoubleArrayFSImplDeprecated.use DoubleArray insteadinterfaceFloatArrayFSImplDeprecated.use FloatArray insteadinterfaceIntArrayFSImplDeprecated.use IntegerArray insteadinterfaceLongArrayFSImplDeprecated.use LongArray insteadinterfaceShortArrayFSImplDeprecated.use ShortArray insteadinterfaceStringArrayFSImplDeprecated.use StringArray insteadMethods in org.apache.uima.cas.impl that return CommonArrayFS Modifier and Type Method Description static CommonArrayFSCASImpl. copyArray(TOP srcArray)private CommonArrayFSXmiCasDeserializer.XmiCasDeserializerHandler. createNewArray(TypeImpl type, java.util.List<java.lang.String> values)Create an array in the CAS.private CommonArrayFSXmiCasDeserializer.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.CommonArrayFSCASImpl. emptyArray(Type type)Methods in org.apache.uima.cas.impl with parameters of type CommonArrayFS Modifier and Type Method Description private CommonArrayFSXmiCasDeserializer.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.intCASImpl. getArraySize(CommonArrayFS fs)private booleanBinaryCasSerDes4.Serializer. isNoPrevArrayValue(CommonArrayFS prevCommonArray)private intBinaryCasSerDes6. serializeArrayLength(CommonArrayFS array)private voidXmiCasDeserializer.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 interfaceArrayFSImpl<E extends FeatureStructure>Deprecated.use FSArray insteadinterfaceCommonPrimitiveArray<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 classBooleanArrayJCas class model for BooleanArrayclassByteArrayJCas class model for ByteArrayclassDoubleArrayJCas class model for DoubleArrayclassFloatArrayJava Cas model for Cas FloatArray.classFSArray<T extends FeatureStructure>Java Class model for Cas FSArray type extends FeatureStructure for backwards compatibility when using FSArray with no typing.classFSArrayList<T extends TOP>An ArrayList type containing Feature Structures, for UIMA Has all the methods of List Implements the select(...) APIsclassIntegerArrayThe Java Class model corresponding to the Cas IntegerArray_JCasImpl type.classIntegerArrayListAn ArrayList type containing ints, for UIMA - implements a subset of the List API, Iterable<Integer>, IntListIterator.classLongArrayJCas class model for LongArrayclassShortArrayJCas class model for ShortArrayclassStringArrayJCas class model for StringArrayMethods in org.apache.uima.jcas.cas with parameters of type CommonArrayFS Modifier and Type Method Description voidBooleanArray. copyValuesFrom(CommonArrayFS<java.lang.Boolean> v)voidByteArray. copyValuesFrom(CommonArrayFS<java.lang.Byte> v)voidDoubleArray. copyValuesFrom(CommonArrayFS v)voidFloatArray. copyValuesFrom(CommonArrayFS v)voidFSArray. copyValuesFrom(CommonArrayFS<T> v)voidFSArrayList. copyValuesFrom(CommonArrayFS v)voidIntegerArray. copyValuesFrom(CommonArrayFS v)voidIntegerArrayList. copyValuesFrom(CommonArrayFS<java.lang.Integer> v)voidLongArray. copyValuesFrom(CommonArrayFS v)voidShortArray. copyValuesFrom(CommonArrayFS v)voidStringArray. copyValuesFrom(CommonArrayFS v)
-