Package org.apache.uima.jcas.cas
Class IntegerList
java.lang.Object
org.apache.uima.cas.impl.FeatureStructureImpl
org.apache.uima.jcas.cas.TOP
org.apache.uima.jcas.cas.IntegerList
- All Implemented Interfaces:
Cloneable
,Iterable<Integer>
,FeatureStructure
- Direct Known Subclasses:
EmptyIntegerList
,NonEmptyIntegerList
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
IntegerList
(int addr, TOP_Type type) IntegerList
(JCas jcas) -
Method Summary
Modifier and TypeMethodDescriptionint
getNthElement
(int i) int
used to obtain reference to the TOP_Type instanceiterator()
push
(int item) pushes item onto front of this listMethods inherited from class org.apache.uima.jcas.cas.TOP
addToIndexes, addToIndexes, equals, getAddress, getCAS, getCASImpl, getLowLevelCas, hashCode, removeFromIndexes, removeFromIndexes
Methods inherited from class org.apache.uima.cas.impl.FeatureStructureImpl
clone, getavoidcollisionTypeCode, getBooleanValue, getByteValue, getDoubleValue, getFeatureValue, getFeatureValueAsString, getFloatValue, getIntValue, getLongValue, getShortValue, getStringValue, getType, prettyPrint, prettyPrint, prettyPrint, setBooleanValue, setByteValue, setDoubleValue, setFeatureValue, setFeatureValueFromString, setFloatValue, setIntValue, setLongValue, setShortValue, setStringValue, toString, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
typeIndexID
public static final int typeIndexID -
type
public static final int type
-
-
Constructor Details
-
IntegerList
protected IntegerList() -
IntegerList
-
IntegerList
-
-
Method Details
-
getTypeIndexID
public int getTypeIndexID()Description copied from class:TOP
used to obtain reference to the TOP_Type instance- Overrides:
getTypeIndexID
in classTOP
- Returns:
- the type array index
-
getNthElement
public int getNthElement(int i) -
push
pushes item onto front of this list- Parameters:
item
- the item to push onto the list- Returns:
- the new list, with this item as the head value of the first element
-
iterator
-