Package org.apache.uima.jcas.cas
Class NonEmptyIntegerList
- java.lang.Object
-
- org.apache.uima.cas.impl.FeatureStructureImpl
-
- org.apache.uima.jcas.cas.TOP
-
- org.apache.uima.jcas.cas.IntegerList
-
- org.apache.uima.jcas.cas.NonEmptyIntegerList
-
- All Implemented Interfaces:
java.lang.Cloneable,java.lang.Iterable<java.lang.Integer>,FeatureStructure
public class NonEmptyIntegerList extends IntegerList implements java.lang.Iterable<java.lang.Integer>
-
-
Field Summary
Fields Modifier and Type Field Description static inttypestatic inttypeIndexID
-
Constructor Summary
Constructors Modifier Constructor Description protectedNonEmptyIntegerList()NonEmptyIntegerList(int addr, TOP_Type type)NonEmptyIntegerList(JCas jcas)NonEmptyIntegerList(JCas jcas, int i, IntegerList tail)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetHead()IntegerListgetTail()intgetTypeIndexID()used to obtain reference to the TOP_Type instancejava.util.Iterator<java.lang.Integer>iterator()voidsetHead(int v)voidsetTail(IntegerList v)-
Methods inherited from class org.apache.uima.jcas.cas.IntegerList
getNthElement, push
-
Methods 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
-
-
-
-
Constructor Detail
-
NonEmptyIntegerList
protected NonEmptyIntegerList()
-
NonEmptyIntegerList
public NonEmptyIntegerList(int addr, TOP_Type type)
-
NonEmptyIntegerList
public NonEmptyIntegerList(JCas jcas)
-
NonEmptyIntegerList
public NonEmptyIntegerList(JCas jcas, int i, IntegerList tail)
- Parameters:
jcas- the jcas to create this Feature Structure ini- the head valuetail- the tail
-
-
Method Detail
-
getTypeIndexID
public int getTypeIndexID()
Description copied from class:TOPused to obtain reference to the TOP_Type instance- Overrides:
getTypeIndexIDin classIntegerList- Returns:
- the type array index
-
getHead
public int getHead()
-
setHead
public void setHead(int v)
-
getTail
public IntegerList getTail()
-
setTail
public void setTail(IntegerList v)
-
iterator
public java.util.Iterator<java.lang.Integer> iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Integer>- Overrides:
iteratorin classIntegerList
-
-