All Methods Static Methods Concrete Methods Deprecated Methods
Modifier and Type |
Method and Description |
static SemanticGraph |
deepCopyFromGraphs(List<SemanticGraph> graphs,
List<Integer> lengths)
Like makeFromGraphs, but it makes a deep copy of the graphs and
renumbers the index words.
|
static SemanticGraph |
duplicateKeepNodes(SemanticGraph sg)
This creates a new graph based off the given, but uses the existing nodes objects.
|
static SemanticGraph |
generateCCProcessedDependencies(GrammaticalStructure gs)
|
static SemanticGraph |
generateCCProcessedDependencies(GrammaticalStructure gs,
GrammaticalStructure.Extras extras)
|
static SemanticGraph |
generateCCProcessedDependencies(Tree tree)
|
static SemanticGraph |
generateCollapsedDependencies(GrammaticalStructure gs)
|
static SemanticGraph |
generateCollapsedDependencies(GrammaticalStructure gs,
GrammaticalStructure.Extras extras)
|
static SemanticGraph |
generateCollapsedDependencies(Tree tree)
|
static SemanticGraph |
generateEnhancedDependencies(GrammaticalStructure gs)
Produces an enhanced dependencies SemanticGraph.
|
static SemanticGraph |
generateEnhancedDependencies(Tree tree)
Produces an enhanced dependencies SemanticGraph.
|
static SemanticGraph |
generateEnhancedPlusPlusDependencies(GrammaticalStructure gs)
Produces an enhanced++ dependencies SemanticGraph.
|
static SemanticGraph |
generateEnhancedPlusPlusDependencies(Tree tree)
Produces an enhanced++ dependencies SemanticGraph.
|
static SemanticGraph |
generateUncollapsedDependencies(GrammaticalStructure gs)
Produces an Uncollapsed (basic) SemanticGraph.
|
static SemanticGraph |
generateUncollapsedDependencies(GrammaticalStructure gs,
GrammaticalStructure.Extras extras)
|
static SemanticGraph |
generateUncollapsedDependencies(Tree tree)
Produces an Uncollapsed (basic) SemanticGraph.
|
static SemanticGraph |
makeFromEdges(Iterable<SemanticGraphEdge> edges)
Given a list of edges, attempts to create and return a rooted SemanticGraph.
|
static SemanticGraph |
makeFromGraphs(Collection<SemanticGraph> sgList)
Given a list of graphs, constructs a new graph combined from the
collection of graphs.
|
static SemanticGraph |
makeFromTree(GrammaticalStructure structure) |
static SemanticGraph |
makeFromTree(GrammaticalStructure tree,
SemanticGraphFactory.Mode mode,
boolean includeExtras,
Predicate<TypedDependency> filter)
Deprecated.
|
static SemanticGraph |
makeFromTree(GrammaticalStructure gs,
SemanticGraphFactory.Mode mode,
GrammaticalStructure.Extras includeExtras,
Predicate<TypedDependency> filter) |
static SemanticGraph |
makeFromTree(Tree tree,
SemanticGraphFactory.Mode mode,
boolean includeExtras)
Deprecated.
|
static SemanticGraph |
makeFromTree(Tree tree,
SemanticGraphFactory.Mode mode,
boolean includeExtras,
Predicate<TypedDependency> filter)
Deprecated.
|
static SemanticGraph |
makeFromTree(Tree tree,
SemanticGraphFactory.Mode mode,
GrammaticalStructure.Extras includeExtras) |
static SemanticGraph |
makeFromTree(Tree tree,
SemanticGraphFactory.Mode mode,
GrammaticalStructure.Extras includeExtras,
Predicate<TypedDependency> filter) |
static SemanticGraph |
makeFromTree(Tree tree,
SemanticGraphFactory.Mode mode,
GrammaticalStructure.Extras includeExtras,
Predicate<TypedDependency> filter,
boolean originalDependencies) |
static SemanticGraph |
makeFromTree(Tree tree,
SemanticGraphFactory.Mode mode,
GrammaticalStructure.Extras includeExtras,
Predicate<TypedDependency> filter,
boolean originalDependencies,
boolean includePunctuationDependencies)
Returns a new SemanticGraph constructed from a given Tree with given options.
|
static SemanticGraph |
makeFromVertices(SemanticGraph sg,
Collection<IndexedWord> nodes)
Given a set of vertices, and the source graph they are drawn from, create a path composed
of the minimum paths between the vertices.
|