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
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
FieldsFields inherited from class org.apache.uima.jcas.cas.TOP_Type
casImpl, casType, casTypeCode, instanceOf_Type, jcas, ll_cas, lowLevelArrayBoundChecks, lowLevelTypeChecks, useExistingInstance
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
copyFromArray
(int addr, FeatureStructure[] src, int srcOffset, int destOffset, int length) void
copyToArray
(int addr, int srcOffset, FeatureStructure[] dest, int destOffset, int length) get
(int addr, int i) protected FSGenerator
<?> void
set
(int addr, int i, FeatureStructure v) updates the Cas, setting the indexed value to the passed in FeatureStructure value.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
-
Field Details
-
typeIndexID
public static final int typeIndexID
-
-
Constructor Details
-
FSArray_Type
-
-
Method Details
-
getFSGenerator
- Overrides:
getFSGenerator
in classTOP_Type
-
get
- 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:
-
set
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:
-
copyFromArray
public void copyFromArray(int addr, FeatureStructure[] src, int srcOffset, int destOffset, int length) throws 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:
ArrayIndexOutOfBoundsException
- if index out of bounds- See Also:
-
copyToArray
public void copyToArray(int addr, int srcOffset, FeatureStructure[] dest, int destOffset, int length) throws 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:
ArrayIndexOutOfBoundsException
- if index out of bounds- See Also:
-
toArray
- Parameters:
addr
- the low level CAS Feature Structure reference- Returns:
- a copy of the CAS array as a Java object
- See Also:
-