Package org.apache.uima.jcas.cas
Class DoubleArray_Type
- java.lang.Object
-
- org.apache.uima.jcas.cas.TOP_Type
-
- org.apache.uima.jcas.cas.CommonArray_Type
-
- org.apache.uima.jcas.cas.DoubleArray_Type
-
public final class DoubleArray_Type extends CommonArray_Type
The java Cas model for the CAS DoubleArray_Type
-
-
Field Summary
Fields Modifier and Type Field Description static int
typeIndexID
this types ID - used to index a localTypeArray in JCas to get an index which indexes the global typeArray in JCas instance to get a ref to this instance-
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 DoubleArray_Type(JCas jcas, Type casType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
copyFromArray(int addr, double[] src, int srcOffset, int destOffset, int length)
void
copyToArray(int addr, int srcOffset, double[] dest, int destOffset, int length)
double
get(int addr, int i)
return the indexed value from the corresponding Cas DoubleArray as a Java double.protected FSGenerator<?>
getFSGenerator()
void
set(int addr, int i, double v)
updates the Cas, setting the indexed value to the passed in Java double value.double[]
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:
getFSGenerator
in classTOP_Type
-
get
public double get(int addr, int i)
return the indexed value from the corresponding Cas DoubleArray as a Java double.- Parameters:
addr
- low level CAS FS referencei
- the index- Returns:
- the value
-
set
public void set(int addr, int i, double v)
updates the Cas, setting the indexed value to the passed in Java double value.- Parameters:
addr
- low level CAS FS referencei
- the indexv
- the value- See Also:
DoubleArrayFS.set(int, double)
-
copyFromArray
public void copyFromArray(int addr, double[] src, int srcOffset, int destOffset, int length)
- Parameters:
addr
- low level CAS Feature Structure reference for the destinationsrc
- the source array to copy fromsrcOffset
- the source offsetdestOffset
- the destination offsetlength
- the number of items to copy- See Also:
DoubleArrayFS.copyFromArray(double[], int, int, int)
-
copyToArray
public void copyToArray(int addr, int srcOffset, double[] dest, int destOffset, int length)
- Parameters:
addr
- the low level CAS Feature Structure reference for the sourcesrcOffset
- the source offsetdest
- the destination to copy intodestOffset
- the destination offsetlength
- the number of items to copy- See Also:
DoubleArrayFS.copyToArray(int, double[], int, int)
-
toArray
public double[] toArray(int addr)
- Parameters:
addr
- the low level CAS Feature Structure reference to copy from- Returns:
- a Java object which is a copy of the values in the array
- See Also:
DoubleArrayFS.toArray()
-
-