Uses of Class
net.java.sen.dictionary.Node

Packages that use Node
net.java.sen.dictionary   
net.java.sen.tokenizers.ja   
 

Uses of Node in net.java.sen.dictionary
 

Fields in net.java.sen.dictionary declared as Node
protected  Node Tokenizer.bosNode
          A Node representing a beginning-of-string
protected  Node Tokenizer.eosNode
          A Node representing an end-of-string
 Node Node.lnext
          The next Node returned for the same ending position within the sentence by the Dictionary
 Node Node.next
          The next node on the best path through the Node lattice
 Node Node.prev
          The previous node on the best path through the Node lattice
 Node Node.rnext
          The next Node returned for the same starting position within the sentence by the Dictionary
 

Methods in net.java.sen.dictionary that return Node
 Node Node.clone()
           
 Node Tokenizer.getBOSNode()
          Creates a unique beginning-of-string Node.
 Node Tokenizer.getEOSNode()
          Creates a unique end-of-string Node.
 Node Tokenizer.getUnknownNode(char[] surface, int start, int length, int span)
          Creates an "unknown morpheme" Node with the specified characteristics.
abstract  Node Tokenizer.lookup(SentenceIterator iterator, char[] surface)
          Searches for possible morphemes from the given SentenceIterator.
 

Methods in net.java.sen.dictionary with parameters of type Node
 int Dictionary.getCost(Node lNode2, Node lNode, Node rNode)
          Retrieves the cost between three Nodes from the connection cost matrix
 

Constructors in net.java.sen.dictionary with parameters of type Node
Token(String surface, Node node)
          Creates a Token from a Node
 

Uses of Node in net.java.sen.tokenizers.ja
 

Methods in net.java.sen.tokenizers.ja that return Node
 Node JapaneseTokenizer.lookup(SentenceIterator iterator, char[] surface)
           
 



Copyright © 2012. All Rights Reserved.