Package org.apache.uima.jcas.cas
Class FloatArray_Type
java.lang.Object
org.apache.uima.jcas.cas.TOP_Type
org.apache.uima.jcas.cas.CommonArray_Type
org.apache.uima.jcas.cas.FloatArray_Type
The java Cas model for the CAS FloatArray Type This is not final because the migration
from pre v08 has the old xxx_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 TypeMethodDescriptionvoidcopyFromArray(int addr, float[] src, int srcOffset, int destOffset, int length) voidcopyToArray(int addr, int srcOffset, float[] dest, int destOffset, int length) floatget(int addr, int i) protected FSGenerator<?>voidset(int addr, int i, float value) updates the Cas, setting the indexed value to the passed in Java float value.float[]toArray(int addr) Methods inherited from class org.apache.uima.jcas.cas.CommonArray_Type
sizeMethods 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
-
FloatArray_Type
-
-
Method Details
-
getFSGenerator
- Overrides:
getFSGeneratorin classTOP_Type
-
get
public float get(int addr, int i) - Parameters:
addr- the low level CAS Feature Structure referencei- the index- Returns:
- the indexed value from the corresponding Cas floatArray as a Java float.
- See Also:
-
set
public void set(int addr, int i, float value) updates the Cas, setting the indexed value to the passed in Java float value.- Parameters:
addr- the low level CAS Feature Structure referencei- the indexvalue- the value to set- See Also:
-
copyFromArray
public void copyFromArray(int addr, float[] src, int srcOffset, int destOffset, int length) - Parameters:
addr- the low level CAS Feature Structure reference to copy intosrc- the array to copy fromsrcOffset- the source offsetdestOffset- the destination offsetlength- the number of items to copy- See Also:
-
copyToArray
public void copyToArray(int addr, int srcOffset, float[] dest, int destOffset, int length) - Parameters:
addr- the low level CAS Feature Structure reference to copy fromsrcOffset- the source offsetdest- the target to copy intodestOffset- the destination offsetlength- the number of items to copy
-
toArray
public float[] toArray(int addr) - Parameters:
addr- the low level CAS Feature Structure reference to copy from- Returns:
- a copy of the array
- See Also:
-