public abstract class FSList extends TOP implements CommonList, Iterable<TOP>
_singleton, _TypeName, type, typeIndexID
_casView, _id, DISABLE_RUNTIME_FEATURE_VALIDATION, DISABLE_RUNTIME_FEATURE_VALUE_VALIDATION, IS_ENABLE_RUNTIME_FEATURE_VALIDATION, IS_ENABLE_RUNTIME_FEATURE_VALUE_VALIDATION
_FeatName_head, _FeatName_tail, EMPTY_LIST_STRING
Modifier | Constructor and Description |
---|---|
protected |
FSList() |
|
FSList(JCas jcas) |
|
FSList(org.apache.uima.cas.impl.TypeImpl t,
org.apache.uima.cas.impl.CASImpl c)
used by generator
Make a new AnnotationBase
|
Modifier and Type | Method and Description |
---|---|
static FSList |
createFromArray(JCas jcas,
FeatureStructure[] a)
Create an FSList from an existing array of Feature Structures
|
NonEmptyFSList |
createNonEmptyNode() |
EmptyFSList |
getEmptyList() |
TOP |
getNthElement(int i) |
Iterator<TOP> |
iterator() |
NonEmptyFSList |
push(TOP item)
pushes item onto front of this list
|
NonEmptyFSList |
pushNode()
Creates a new node and pushes it onto the front of the existing node
|
<T extends FeatureStructure> |
select()
Treat an FSArray as a source for SelectFSs.
|
<T extends FeatureStructure> |
select(Class<T> filterByType)
Treat an FSArray as a source for SelectFSs.
|
<T extends FeatureStructure> |
select(int filterByType)
Treat an FSArray as a source for SelectFSs.
|
<T extends FeatureStructure> |
select(String filterByType)
Treat an FSArray as a source for SelectFSs.
|
<T extends FeatureStructure> |
select(Type filterByType)
Treat an FSArray as a source for SelectFSs.
|
<T extends TOP> |
stream() |
_createJCasHashMapReserve, _createSearchKey, getTypeIndexID
_copyIntAndRefArraysEqTypesFrom, _copyIntAndRefArraysFrom, _copyIntArrayEqTypesFrom, _getBooleanValueNc, _getBooleanValueNc, _getByteValueNc, _getByteValueNc, _getDoubleValueNc, _getDoubleValueNc, _getFeatFromAdjOffset, _getFeatureValueNc, _getFeatureValueNc, _getFloatValueNc, _getFloatValueNc, _getIntLikeValue, _getIntValueNc, _getIntValueNc, _getLongValueNc, _getLongValueNc, _getRefValueCommon, _getShortValueNc, _getShortValueNc, _getStringValueNc, _getStringValueNc, _getTypeCode, _getTypeImpl, _getView, _id, _inSetSortedIndex, _isJCasHashMapReserve, _isPearTrampoline, _maybeGetBaseForPearFs, _maybeGetBaseForPearFs, _maybeGetPearFs, _maybeGetPearFs, _resetInSetSortedIndex, _setBooleanValueNcNj, _setBooleanValueNcNj, _setBooleanValueNfc, _setByteValueNcNj, _setByteValueNcNj, _setByteValueNfc, _setDoubleValueNcNj, _setDoubleValueNcNj, _setDoubleValueNfc, _setFeatureValueNcNj, _setFeatureValueNcNj, _setFeatureValueNcWj, _setFloatValueNcNj, _setFloatValueNcNj, _setFloatValueNfc, _setInSetSortedIndexed, _setIntLikeValue, _setIntLikeValueNcNj, _setIntValueCJ, _setIntValueNcNj, _setIntValueNcNj, _setIntValueNfc, _setIntValueNfcCJ, _setJCasHashMapReserve, _setLongValueCJ, _setLongValueNcNj, _setLongValueNcNj, _setLongValueNfc, _setLongValueNfcCJ, _setPearTrampoline, _setRefValueCJ, _setRefValueCommon, _setRefValueCommonWj, _setRefValueNfcCJ, _setShortValueNcNj, _setShortValueNcNj, _setShortValueNfc, _setStringValueNcNj, _setStringValueNcWj, _setStringValueNfc, _setTypeImpl, addToIndexes, addToIndexes, addToIndexes, clone, compare, getAddress, getBooleanValue, getByteValue, getCAS, getCASImpl, getDoubleValue, getFeatureValue, getFeatureValueAsString, getFloatValue, getIntValue, getLongValue, getLowLevelCas, getShortValue, getStringValue, getType, hashCode, prettyPrint, prettyPrint, prettyPrint, prettyPrint, prettyPrint, prettyPrint, removeFromIndexes, removeFromIndexes, removeFromIndexes, setBooleanValue, setByteValue, setDoubleValue, setFeatureValue, setFeatureValueFromString, setFloatValue, setIntValue, setLongValue, setShortValue, setStringValue, toShortString, toString, toString
equals, finalize, getClass, notify, notifyAll, wait, wait, wait
_id, anyListToOutput, anyListToStringList, get_headAsString, getCommonTail, getLength, getNonEmptyNthNode, getNthNode, insertNode, set_headFromString, setTail, walkList
_getTypeCode, clone, getAddress, getBooleanValue, getByteValue, getCAS, getDoubleValue, getFeatureValue, getFeatureValueAsString, getFloatValue, getIntValue, getLongValue, getShortValue, getStringValue, getType, setBooleanValue, setByteValue, setDoubleValue, setFeatureValue, setFeatureValueFromString, setFloatValue, setIntValue, setLongValue, setShortValue, setStringValue
forEach, spliterator
protected FSList()
public FSList(JCas jcas)
public FSList(org.apache.uima.cas.impl.TypeImpl t, org.apache.uima.cas.impl.CASImpl c)
c
- -t
- -public TOP getNthElement(int i)
public NonEmptyFSList createNonEmptyNode()
createNonEmptyNode
in interface CommonList
public NonEmptyFSList pushNode()
CommonList
pushNode
in interface CommonList
public <T extends FeatureStructure> SelectFSs<T> select()
T
- generic type being selectedpublic <T extends FeatureStructure> SelectFSs<T> select(Type filterByType)
T
- generic type being selectedfilterByType
- only includes elements of this typepublic <T extends FeatureStructure> SelectFSs<T> select(Class<T> filterByType)
T
- generic type being selectedfilterByType
- only includes elements of this JCas classpublic <T extends FeatureStructure> SelectFSs<T> select(int filterByType)
T
- generic type being selectedfilterByType
- only includes elements of this JCas class's typepublic <T extends FeatureStructure> SelectFSs<T> select(String filterByType)
T
- generic type being selectedfilterByType
- only includes elements of this type (fully qualifined type name)public static FSList createFromArray(JCas jcas, FeatureStructure[] a)
jcas
- the JCas to usea
- the array of Feature Structures to populate the list withpublic NonEmptyFSList push(TOP item)
item
- the item to push onto the listpublic <T extends TOP> java.util.stream.Stream<T> stream()
T
- generic type being returnedpublic EmptyFSList getEmptyList()
getEmptyList
in interface CommonList
Copyright © 2006–2017 The Apache Software Foundation. All rights reserved.