Package | Description |
---|---|
org.apache.uima.jcas.cas |
JCAS model for built-in CAS types
|
Modifier and Type | Interface and Description |
---|---|
interface |
NonEmptyList
a marker interface for nonempty lists
|
Modifier and Type | Class and Description |
---|---|
class |
EmptyFloatList |
class |
EmptyFSList |
class |
EmptyIntegerList |
class |
EmptyStringList |
class |
FloatList |
class |
FSList |
class |
IntegerList |
class |
NonEmptyFloatList |
class |
NonEmptyFSList |
class |
NonEmptyIntegerList |
class |
NonEmptyStringList |
class |
StringList |
Modifier and Type | Method and Description |
---|---|
CommonList |
CommonList.createNonEmptyNode() |
default CommonList |
CommonList.getCommonTail()
default impl for empty and nonempty lists
|
CommonList |
CommonList.getEmptyList() |
default CommonList |
CommonList.getNonEmptyNthNode(int i) |
default CommonList |
CommonList.getNthNode(int i)
Get the nth node.
|
default CommonList |
CommonList.insertNode()
insert a new nonempty node following this node
|
default CommonList |
CommonList.pushNode()
Creates a new node and pushes it onto the front of the existing node
|
Modifier and Type | Method and Description |
---|---|
default void |
CommonList.setTail(CommonList v)
default
|
void |
NonEmptyFloatList.setTail(CommonList v) |
void |
NonEmptyFSList.setTail(CommonList v) |
void |
NonEmptyIntegerList.setTail(CommonList v) |
void |
NonEmptyStringList.setTail(CommonList v) |
Constructor and Description |
---|
NonEmptyFloatList(JCas jcas,
float v,
CommonList tail)
Generate a NonEmpty node with the specified head and tail
|
NonEmptyFSList(JCas jcas,
TOP head,
CommonList tail)
Generate a NonEmpty node with the specified head and tail
|
NonEmptyIntegerList(JCas jcas,
int v,
CommonList tail)
Generate a NonEmpty node with the specified head and tail
|
NonEmptyStringList(JCas jcas,
String head,
CommonList tail)
Generate a NonEmpty node with the specified head and tail
|
Copyright © 2006–2017 The Apache Software Foundation. All rights reserved.