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

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

Introduction

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

The text is from its open source code.

Method

booleanfind()
Find the next match of the pattern on the tree.
booleanfindAt(Tree node)
Similar to find() , but matches only if node is the root of the match.
booleanfindNextMatchingNode()
Find the next match of the pattern on the tree such that the matching node (that is, the tree node matching the root node of the pattern) differs from the previous matching node.
TreegetMatch()
Get the last matching tree -- that is, the tree node that matches the root node of the pattern.
TreegetNode(String name)
Returns the node labeled with name in the pattern.
SetgetNodeNames()
booleanmatches()
Does the pattern match the tree?