Package org.apache.uima.jcas.cas
Class FSArray_Type
- java.lang.Object
-
- org.apache.uima.jcas.cas.TOP_Type
-
- org.apache.uima.jcas.cas.CommonArray_Type
-
- org.apache.uima.jcas.cas.FSArray_Type
-
public class FSArray_Type extends CommonArray_Type
The java Cas model for the CAS FSArray Type This is not final because the migration from pre v08 has the old FSArray_Type as a subclass of this.
-
-
Field Summary
Fields Modifier and Type Field Description static inttypeIndexID-
Fields inherited from class org.apache.uima.jcas.cas.TOP_Type
casImpl, casType, casTypeCode, instanceOf_Type, jcas, ll_cas, lowLevelArrayBoundChecks, lowLevelTypeChecks, useExistingInstance
-
-
Constructor Summary
Constructors Constructor Description FSArray_Type(JCas jcas, Type casType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcopyFromArray(int addr, FeatureStructure[] src, int srcOffset, int destOffset, int length)voidcopyToArray(int addr, int srcOffset, FeatureStructure[] dest, int destOffset, int length)FeatureStructureget(int addr, int i)protected FSGenerator<?>getFSGenerator()voidset(int addr, int i, FeatureStructure v)updates the Cas, setting the indexed value to the passed in FeatureStructure value.FeatureStructure[]toArray(int addr)-
Methods inherited from class org.apache.uima.jcas.cas.CommonArray_Type
size
-
Methods inherited from class org.apache.uima.jcas.cas.TOP_Type
addToIndexes, checkType, getTypeIndexID, invalidTypeArg, noObjCreate, removeFromIndexes
-
-
-
-
Method Detail
-
getFSGenerator
protected FSGenerator<?> getFSGenerator()
- Overrides:
getFSGeneratorin classTOP_Type
-
get
public FeatureStructure get(int addr, int i)
- Parameters:
addr- the low level CAS Feature Structure referencei- the index- Returns:
- the indexed value from the corresponding Cas FSArray as a JCas object.
- See Also:
ArrayFS.get(int)
-
set
public void set(int addr, int i, FeatureStructure v)updates the Cas, setting the indexed value to the passed in FeatureStructure value.- Parameters:
addr- the low level CAS Feature Structure referencei- the indexv- the value- See Also:
ArrayFS.set(int, FeatureStructure)
-
copyFromArray
public void copyFromArray(int addr, FeatureStructure[] src, int srcOffset, int destOffset, int length) throws java.lang.ArrayIndexOutOfBoundsException- Parameters:
addr- the low level CAS Feature Structure referencesrc- the Java array object to copy fromsrcOffset- the source offsetdestOffset- the destination offsetlength- the number of items to copy- Throws:
java.lang.ArrayIndexOutOfBoundsException- if index out of bounds- See Also:
ArrayFS.copyFromArray(FeatureStructure[], int, int, int)
-
copyToArray
public void copyToArray(int addr, int srcOffset, FeatureStructure[] dest, int destOffset, int length) throws java.lang.ArrayIndexOutOfBoundsException- Parameters:
addr- the low level CAS Feature Structure referencesrcOffset- the CAS source offsetdest- the Java object to copy intodestOffset- the destination offsetlength- the number of items to copy- Throws:
java.lang.ArrayIndexOutOfBoundsException- if index out of bounds- See Also:
ArrayFS.copyToArray(int, FeatureStructure[], int, int)
-
toArray
public FeatureStructure[] toArray(int addr)
- Parameters:
addr- the low level CAS Feature Structure reference- Returns:
- a copy of the CAS array as a Java object
- See Also:
ArrayFS.toArray()
-
-