Package | Description |
---|---|
org.maltparser.core.lw.graph | |
org.maltparser.core.syntaxgraph | |
org.maltparser.core.syntaxgraph.node | |
org.maltparser.parser.algorithm.covington |
Implements the Covington deterministic parsing algorithms.
|
org.maltparser.parser.algorithm.nivre |
Implements the Nivre deterministic parsing algorithms.
|
org.maltparser.parser.algorithm.planar | |
org.maltparser.parser.algorithm.stack |
Implements the Stack parsing algorithms.
|
org.maltparser.parser.algorithm.twoplanar |
Modifier and Type | Class and Description |
---|---|
class |
LWNode
A lightweight version of org.maltparser.core.syntaxgraph.node.
|
Modifier and Type | Method and Description |
---|---|
java.util.SortedSet<DependencyNode> |
LWNode.getDependents() |
java.util.SortedSet<DependencyNode> |
LWNode.getHeads() |
java.util.SortedSet<DependencyNode> |
LWNode.getLeftDependents() |
java.util.List<DependencyNode> |
LWNode.getListOfDependents() |
protected java.util.List<DependencyNode> |
LWDependencyGraph.getListOfDependents(int nodeIndex) |
java.util.List<DependencyNode> |
LWNode.getListOfLeftDependents() |
protected java.util.List<DependencyNode> |
LWDependencyGraph.getListOfLeftDependents(int nodeIndex) |
java.util.List<DependencyNode> |
LWNode.getListOfRightDependents() |
protected java.util.List<DependencyNode> |
LWDependencyGraph.getListOfRightDependents(int nodeIndex) |
java.util.SortedSet<DependencyNode> |
LWNode.getRightDependents() |
protected java.util.SortedSet<DependencyNode> |
LWDependencyGraph.getSortedSetOfDependents(int nodeIndex) |
protected java.util.SortedSet<DependencyNode> |
LWDependencyGraph.getSortedSetOfLeftDependents(int nodeIndex) |
protected java.util.SortedSet<DependencyNode> |
LWDependencyGraph.getSortedSetOfRightDependents(int nodeIndex) |
Modifier and Type | Method and Description |
---|---|
void |
LWNode.setComponent(DependencyNode x) |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
MappablePhraseStructureGraph.addDependencyNode() |
DependencyNode |
DependencyStructure.addDependencyNode() |
DependencyNode |
DependencyGraph.addDependencyNode() |
DependencyNode |
MappablePhraseStructureGraph.addDependencyNode(int index) |
DependencyNode |
DependencyStructure.addDependencyNode(int index) |
DependencyNode |
DependencyGraph.addDependencyNode(int index) |
DependencyNode |
MappablePhraseStructureGraph.getDependencyNode(int index) |
DependencyNode |
DependencyStructure.getDependencyNode(int index)
Returns the dependency node identified by index if it exists, otherwise null.
|
DependencyNode |
DependencyGraph.getDependencyNode(int index) |
DependencyNode |
MappablePhraseStructureGraph.getDependencyRoot() |
DependencyNode |
DependencyStructure.getDependencyRoot()
Returns the root of the dependency structure.
|
DependencyNode |
DependencyGraph.getDependencyRoot() |
protected DependencyNode |
MappablePhraseStructureGraph.link(DependencyNode x,
DependencyNode y) |
protected DependencyNode |
DependencyGraph.link(DependencyNode x,
DependencyNode y) |
Modifier and Type | Method and Description |
---|---|
Edge |
MappablePhraseStructureGraph.addDependencyEdge(DependencyNode head,
DependencyNode dependent) |
protected Edge |
DependencyGraph.addDependencyEdge(DependencyNode head,
DependencyNode dependent) |
protected DependencyNode |
MappablePhraseStructureGraph.link(DependencyNode x,
DependencyNode y) |
protected DependencyNode |
DependencyGraph.link(DependencyNode x,
DependencyNode y) |
Edge |
MappablePhraseStructureGraph.moveDependencyEdge(DependencyNode newHead,
DependencyNode dependent) |
protected Edge |
DependencyGraph.moveDependencyEdge(DependencyNode newHead,
DependencyNode dependent) |
Modifier and Type | Interface and Description |
---|---|
interface |
TokenNode |
Modifier and Type | Class and Description |
---|---|
class |
Root |
class |
Token |
Modifier and Type | Field and Description |
---|---|
protected DependencyNode |
Root.component
a reference to a node where the node is part of a component.
|
protected DependencyNode |
Token.component
a reference to a node where the node is part of a component.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.SortedSet<DependencyNode> |
Token.heads |
protected java.util.SortedSet<DependencyNode> |
Root.leftDependents |
protected java.util.SortedSet<DependencyNode> |
Token.leftDependents |
protected java.util.SortedSet<DependencyNode> |
Root.rightDependents |
protected java.util.SortedSet<DependencyNode> |
Token.rightDependents |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
Root.findComponent() |
DependencyNode |
DependencyNode.findComponent() |
DependencyNode |
Token.findComponent() |
DependencyNode |
Root.getAncestor() |
DependencyNode |
DependencyNode.getAncestor() |
DependencyNode |
Token.getAncestor() |
DependencyNode |
Root.getClosestLeftDependent()
Returns the closest left dependent to the node it self, if not found
null is returned. |
DependencyNode |
DependencyNode.getClosestLeftDependent()
Returns the closest left dependent to the node it self, if not found
null is returned. |
DependencyNode |
Token.getClosestLeftDependent()
Returns the closest left dependent to the node it self, if not found
null is returned. |
DependencyNode |
Root.getClosestRightDependent()
Returns the closest right dependent to the node it self, if not found
null is returned. |
DependencyNode |
DependencyNode.getClosestRightDependent()
Returns the closest right dependent to the node it self, if not found
null is returned. |
DependencyNode |
Token.getClosestRightDependent()
Returns the closest right dependent to the node it self, if not found
null is returned. |
DependencyNode |
Root.getComponent() |
DependencyNode |
DependencyNode.getComponent() |
DependencyNode |
Token.getComponent() |
DependencyNode |
Root.getHead() |
DependencyNode |
DependencyNode.getHead()
Returns the head dependency node if it exists, otherwise null.
|
DependencyNode |
Token.getHead() |
DependencyNode |
Root.getLeftDependent(int index)
Returns the left dependent at the position
index , where index==0 equals the left most dependent. |
DependencyNode |
DependencyNode.getLeftDependent(int index)
Returns the left dependent at the position index, where index==0 equals the left most dependent.
|
DependencyNode |
Token.getLeftDependent(int index)
Returns the left dependent at the position
index , where index==0 equals the left most dependent. |
DependencyNode |
Root.getLeftmostDependent() |
DependencyNode |
DependencyNode.getLeftmostDependent() |
DependencyNode |
Token.getLeftmostDependent() |
DependencyNode |
Root.getLeftSibling()
Returns the left sibling if it exists, otherwise
null |
DependencyNode |
DependencyNode.getLeftSibling()
Returns the left sibling if it exists, otherwise
null |
DependencyNode |
Token.getLeftSibling()
Returns the left sibling if it exists, otherwise
null |
DependencyNode |
Root.getPredecessor() |
DependencyNode |
DependencyNode.getPredecessor()
Returns the predecessor dependency node in the linear order of the token nodes.
|
DependencyNode |
Token.getPredecessor() |
DependencyNode |
Root.getProperAncestor() |
DependencyNode |
DependencyNode.getProperAncestor() |
DependencyNode |
Token.getProperAncestor() |
DependencyNode |
Root.getRightDependent(int index) |
DependencyNode |
DependencyNode.getRightDependent(int index) |
DependencyNode |
Token.getRightDependent(int index) |
DependencyNode |
Root.getRightmostDependent() |
DependencyNode |
DependencyNode.getRightmostDependent() |
DependencyNode |
Token.getRightmostDependent() |
DependencyNode |
Root.getRightSibling()
Returns the right sibling if it exists, otherwise
null |
DependencyNode |
DependencyNode.getRightSibling()
Returns the right sibling if it exists, otherwise
null |
DependencyNode |
Token.getRightSibling()
Returns the right sibling if it exists, otherwise
null |
DependencyNode |
Root.getSameSideLeftSibling()
Returns the left sibling at the same side of head as the node it self.
|
DependencyNode |
DependencyNode.getSameSideLeftSibling()
Returns the left sibling at the same side of head as the node it self.
|
DependencyNode |
Token.getSameSideLeftSibling()
Returns the left sibling at the same side of head as the node it self.
|
DependencyNode |
Root.getSameSideRightSibling()
Returns the right sibling at the same side of head as the node it self.
|
DependencyNode |
DependencyNode.getSameSideRightSibling()
Returns the right sibling at the same side of head as the node it self.
|
DependencyNode |
Token.getSameSideRightSibling()
Returns the right sibling at the same side of head as the node it self.
|
DependencyNode |
Root.getSuccessor() |
DependencyNode |
DependencyNode.getSuccessor()
Returns the successor dependency node in the linear order of the token nodes.
|
DependencyNode |
Token.getSuccessor() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<DependencyNode> |
Root.getHeads() |
java.util.Set<DependencyNode> |
DependencyNode.getHeads() |
java.util.Set<DependencyNode> |
Token.getHeads() |
java.util.SortedSet<DependencyNode> |
Root.getLeftDependents() |
java.util.SortedSet<DependencyNode> |
DependencyNode.getLeftDependents()
Returns a sorted set of left dependents.
|
java.util.SortedSet<DependencyNode> |
Token.getLeftDependents() |
java.util.List<DependencyNode> |
Root.getListOfDependents() |
java.util.List<DependencyNode> |
DependencyNode.getListOfDependents() |
java.util.List<DependencyNode> |
Token.getListOfDependents() |
java.util.List<DependencyNode> |
Root.getListOfLeftDependents() |
java.util.List<DependencyNode> |
DependencyNode.getListOfLeftDependents() |
java.util.List<DependencyNode> |
Token.getListOfLeftDependents() |
java.util.List<DependencyNode> |
Root.getListOfRightDependents() |
java.util.List<DependencyNode> |
DependencyNode.getListOfRightDependents() |
java.util.List<DependencyNode> |
Token.getListOfRightDependents() |
java.util.SortedSet<DependencyNode> |
Root.getRightDependents() |
java.util.SortedSet<DependencyNode> |
DependencyNode.getRightDependents()
Returns a sorted set of right dependents.
|
java.util.SortedSet<DependencyNode> |
Token.getRightDependents()
Returns a sorted set of right dependents.
|
Modifier and Type | Method and Description |
---|---|
void |
Root.setComponent(DependencyNode x) |
void |
DependencyNode.setComponent(DependencyNode x) |
void |
Token.setComponent(DependencyNode x) |
Modifier and Type | Method and Description |
---|---|
protected void |
Root.getDependencyDominationSet(java.util.SortedSet<DependencyNode> dominationSet) |
protected void |
Token.getDependencyDominationSet(java.util.SortedSet<DependencyNode> dominationSet) |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
CovingtonConfig.getLeftContextNode(int index) |
DependencyNode |
CovingtonConfig.getLeftNode(int index) |
DependencyNode |
CovingtonConfig.getLeftTarget() |
DependencyNode |
CovingtonConfig.getRightContextNode(int index) |
DependencyNode |
CovingtonConfig.getRightNode(int index) |
DependencyNode |
CovingtonConfig.getRightTarget() |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<DependencyNode> |
CovingtonConfig.getInput() |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
NivreConfig.getInputNode(int index) |
DependencyNode |
NivreConfig.getStackNode(int index) |
Modifier and Type | Method and Description |
---|---|
java.util.Stack<DependencyNode> |
NivreConfig.getInput() |
java.util.Stack<DependencyNode> |
NivreConfig.getStack() |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
PlanarConfig.getInputNode(int index) |
DependencyNode |
PlanarConfig.getStackNode(int index) |
Modifier and Type | Method and Description |
---|---|
java.util.Stack<DependencyNode> |
PlanarConfig.getInput() |
java.util.Stack<DependencyNode> |
PlanarConfig.getStack() |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
StackConfig.getInputNode(int index) |
DependencyNode |
StackConfig.getLookaheadNode(int index) |
DependencyNode |
StackConfig.getStackNode(int index) |
Modifier and Type | Method and Description |
---|---|
java.util.Stack<DependencyNode> |
StackConfig.getInput() |
java.util.Stack<DependencyNode> |
StackConfig.getStack() |
Modifier and Type | Method and Description |
---|---|
DependencyNode |
TwoPlanarConfig.getActiveStackNode(int index) |
DependencyNode |
TwoPlanarConfig.getInactiveStackNode(int index) |
DependencyNode |
TwoPlanarConfig.getInputNode(int index) |
Modifier and Type | Method and Description |
---|---|
java.util.Stack<DependencyNode> |
TwoPlanarConfig.getActiveStack() |
java.util.Stack<DependencyNode> |
TwoPlanarConfig.getInactiveStack() |
java.util.Stack<DependencyNode> |
TwoPlanarConfig.getInput() |
Copyright 2007-2017 Johan Hall, Jens Nilsson and Joakim Nivre.