phrase nets
|
Public Member Functions | |
Link (String from) | |
Link | copy () |
String | getFrom () |
Map< String, MutableInteger > | getTo () |
void | add (String to, String linkWord) |
String | toString () |
Protected Member Functions | |
Object | clone () throws CloneNotSupportedException |
A link.
Example: A x B x B x C y D
getFrom() -> A getLinkWordMatchCount() -> (x,3),(y,1) getTo() -> (B,2),(C,1),(D,1)
pn::parse::ParseResult::Link::Link | ( | String | from | ) | [inline] |
Ctor.
from | A (see description of this class). Must not be null |
void pn::parse::ParseResult::Link::add | ( | String | to, |
String | linkWord | ||
) | [inline] |
Adds a link (x B in (A x B)).
to | B. Must not be null |
linkWord | x. Must not be null |
Link pn::parse::ParseResult::Link::copy | ( | ) | [inline] |
String pn::parse::ParseResult::Link::getFrom | ( | ) | [inline] |
Map<String, MutableInteger> pn::parse::ParseResult::Link::getTo | ( | ) | [inline] |