Package org.apache.uima.jcas.cas
Class ShortArray_Type
- java.lang.Object
-
- org.apache.uima.jcas.cas.TOP_Type
-
- org.apache.uima.jcas.cas.CommonArray_Type
-
- org.apache.uima.jcas.cas.ShortArray_Type
-
public final class ShortArray_Type extends CommonArray_Type
The java Cas model for the CAS ShortArray_Type
-
-
Field Summary
Fields Modifier and Type Field Description static inttypeIndexIDthis 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 ShortArray_Type(JCas jcas, Type casType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcopyFromArray(int addr, short[] src, int srcOffset, int destOffset, int length)voidcopyToArray(int addr, int srcOffset, short[] dest, int destOffset, int length)shortget(int addr, int i)protected FSGenerator<?>getFSGenerator()voidset(int addr, int i, short v)updates the Cas, setting the indexed value to the passed in Java String value.short[]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 short get(int addr, int i)- Parameters:
addr- the low level CAS Feature Structure referencei- the index- Returns:
- the indexed value from the corresponding Cas Feature Structure
- See Also:
ShortArrayFS.get(int)
-
set
public void set(int addr, int i, short v)updates the Cas, setting the indexed value to the passed in Java String value.- Parameters:
addr- the low level CAS Feature Structure referencei- the indexv- the value- See Also:
ShortArrayFS.set(int, short)
-
copyFromArray
public void copyFromArray(int addr, short[] src, int srcOffset, int destOffset, int length)- Parameters:
addr- the low level CAS Feature Structure referencesrc- the Java object used as the sourcesrcOffset- the source offsetdestOffset- the destination (in the CAS FS) offsetlength- the number of items to copy- See Also:
ShortArrayFS.copyFromArray(short[], int, int, int)
-
copyToArray
public void copyToArray(int addr, int srcOffset, short[] dest, int destOffset, int length)- Parameters:
addr- the low level CAS Feature Structure referencesrcOffset- the source offsetdest- the Java object to copy intodestOffset- the destination offsetlength- the number of items to copy- See Also:
ShortArrayFS.copyToArray(int, short[], int, int)
-
toArray
public short[] toArray(int addr)
- Parameters:
addr- the low level CAS Feature Structure reference- Returns:
- a copy of the CAS Feature Structure Array as a Java Object
- See Also:
ShortArrayFS.toArray()
-
-