Package org.apache.uima.jcas.cas
Class LongArray_Type
java.lang.Object
org.apache.uima.jcas.cas.TOP_Type
org.apache.uima.jcas.cas.CommonArray_Type
org.apache.uima.jcas.cas.LongArray_Type
The java Cas model for the CAS LongArray_Type
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
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 instanceFields 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, long[] src, int srcOffset, int destOffset, int length) void
copyToArray
(int addr, int srcOffset, long[] dest, int destOffset, int length) long
get
(int addr, int i) protected FSGenerator<?>
void
set
(int addr, int i, long v) updates the Cas, setting the indexed value to the passed in Java long.long[]
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 typeIndexIDthis 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
-
-
Constructor Details
-
LongArray_Type
private LongArray_Type() -
LongArray_Type
-
-
Method Details
-
getFSGenerator
- Overrides:
getFSGenerator
in classTOP_Type
-
get
public long get(int addr, int i) - Parameters:
addr
- low level CAS Feature Structure referencei
- the index- Returns:
- the indexed value from the corresponding Cas LongArray as a Java long.
- See Also:
-
set
public void set(int addr, int i, long v) updates the Cas, setting the indexed value to the passed in Java long.- Parameters:
addr
- low level CAS Feature Structure referencei
- the indexv
- the value to set- See Also:
-
copyFromArray
public void copyFromArray(int addr, long[] src, int srcOffset, int destOffset, int length) - Parameters:
addr
- low level CAS Feature Structure referencesrc
- the Java object to coyp fromsrcOffset
- the source offsetdestOffset
- the destination (in the CAS) offsetlength
- the number of items to copy- See Also:
-
copyToArray
public void copyToArray(int addr, int srcOffset, long[] dest, int destOffset, int length) - Parameters:
addr
- low level CAS Feature Structure referencesrcOffset
- the source offset in the CASdest
- the Java object to copy intodestOffset
- the destination offsetlength
- the number of items to copy- See Also:
-
toArray
public long[] toArray(int addr) - Parameters:
addr
- low level CAS Feature Structure reference- Returns:
- a copy of the CAS Object as a Java object
- See Also:
-