Package org.apache.uima.jcas.cas
Class NonEmptyFSList
- java.lang.Object
-
- org.apache.uima.cas.impl.FeatureStructureImpl
-
- org.apache.uima.jcas.cas.TOP
-
- org.apache.uima.jcas.cas.FSList
-
- org.apache.uima.jcas.cas.NonEmptyFSList
-
- All Implemented Interfaces:
java.lang.Cloneable
,java.lang.Iterable<TOP>
,FeatureStructure
public class NonEmptyFSList extends FSList
-
-
Field Summary
Fields Modifier and Type Field Description static int
type
static int
typeIndexID
-
Constructor Summary
Constructors Modifier Constructor Description protected
NonEmptyFSList()
NonEmptyFSList(int addr, TOP_Type type)
NonEmptyFSList(JCas jcas)
NonEmptyFSList(JCas jcas, TOP item, FSList tail)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TOP
getHead()
FSList
getTail()
int
getTypeIndexID()
used to obtain reference to the TOP_Type instancejava.util.Iterator<TOP>
iterator()
void
setHead(TOP v)
void
setTail(FSList v)
-
Methods inherited from class org.apache.uima.jcas.cas.FSList
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
-
-
-
-
Method Detail
-
getTypeIndexID
public int getTypeIndexID()
Description copied from class:TOP
used to obtain reference to the TOP_Type instance- Overrides:
getTypeIndexID
in classFSList
- Returns:
- the type array index
-
getHead
public TOP getHead()
-
setHead
public void setHead(TOP v)
-
getTail
public FSList getTail()
-
setTail
public void setTail(FSList v)
-
-