Java edu.stanford.nlp.trees TreeFactory fields, constructors, methods, implement or subclass

Example usage for Java edu.stanford.nlp.trees TreeFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for edu.stanford.nlp.trees TreeFactory.

The text is from its open source code.

Method

TreenewLeaf(String word)
Create a new tree leaf node, where the label is formed from the String passed in.
TreenewLeaf(Label label)
Create a new tree leaf node, with the given label.
TreenewTreeNode(String parent, List children)
Create a new tree non-leaf node, where the label is formed from the String passed in.
TreenewTreeNode(Label label, List children)
Create a new tree non-leaf node, with the given label.