Uses of Class
org.apache.uima.internal.util.GraphNode
-
Packages that use GraphNode Package Description org.apache.uima.cas.impl Implementation and Low-Level API for the CAS Interfaces.org.apache.uima.internal.util -
-
Uses of GraphNode in org.apache.uima.cas.impl
Subclasses of GraphNode in org.apache.uima.cas.impl Modifier and Type Class Description private class
LinearTypeOrderBuilderImpl.Node
Methods in org.apache.uima.cas.impl that return types with arguments of type GraphNode Modifier and Type Method Description private java.util.ArrayList<GraphNode>
LinearTypeOrderBuilderImpl.Node. getAllPredecessors()
private java.util.ArrayList<GraphNode>
LinearTypeOrderBuilderImpl.Node. getAllSuccessors()
Method parameters in org.apache.uima.cas.impl with type arguments of type GraphNode Modifier and Type Method Description private void
LinearTypeOrderBuilderImpl.Node. addAllPredecessors(java.util.ArrayList<? extends GraphNode> pred)
private void
LinearTypeOrderBuilderImpl.Node. addAllSuccessors(java.util.ArrayList<? extends GraphNode> successors1)
-
Uses of GraphNode in org.apache.uima.internal.util
Fields in org.apache.uima.internal.util declared as GraphNode Modifier and Type Field Description protected GraphNode
Graph. root
Fields in org.apache.uima.internal.util with type parameters of type GraphNode Modifier and Type Field Description protected java.util.ArrayList<GraphNode>
GraphNode. predecessors
protected java.util.ArrayList<GraphNode>
GraphNode. successors
Methods in org.apache.uima.internal.util that return GraphNode Modifier and Type Method Description GraphNode
GraphNode. getPredecessor(int i)
Get a specific predecessor node.GraphNode
Graph. getRoot()
GraphNode
GraphNode. getSuccessor(int i)
Get a specific successor node.Methods in org.apache.uima.internal.util with parameters of type GraphNode Modifier and Type Method Description void
GraphNode. addPredecessor(GraphNode pred)
Add a new predecessor node.void
GraphNode. addSuccessor(GraphNode succ)
Add a new successor node.static void
Graph. collectNodes(GraphNode n, java.util.Vector<GraphNode> nodes)
void
GraphNode. connect(GraphNode node)
Connect this node to a new node.protected static int
Graph. getNodeCode(GraphNode n, java.util.Vector<GraphNode> nodes)
void
Graph. setRoot(GraphNode root)
Set the root of the graph.Method parameters in org.apache.uima.internal.util with type arguments of type GraphNode Modifier and Type Method Description static void
Graph. collectNodes(GraphNode n, java.util.Vector<GraphNode> nodes)
protected static int
Graph. getNodeCode(GraphNode n, java.util.Vector<GraphNode> nodes)
-