Package | Description |
---|---|
org.maltparser.core.symbol.trie |
Provides classes for handling different kinds of symbols as trie data structure.
|
Modifier and Type | Method and Description |
---|---|
TrieNode |
Trie.addValue(java.lang.StringBuilder symbol,
TrieSymbolTable table,
int code) |
TrieNode |
Trie.addValue(java.lang.String value,
TrieSymbolTable table,
int code) |
TrieNode |
TrieNode.getChild(char c)
Returns the child node that corresponds to the character
|
TrieNode |
TrieNode.getOrAddChild(boolean isWord,
char c,
TrieSymbolTable table,
int code)
Adds and/or retrieve a child trie node.
|
TrieNode |
TrieNode.getParent()
Returns the parent node
|
Modifier and Type | Method and Description |
---|---|
java.util.SortedMap<java.lang.Integer,TrieNode> |
TrieSymbolTable.getCodeTable() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
Trie.getValue(TrieNode node,
TrieSymbolTable table) |
Constructor and Description |
---|
TrieNode(char character,
TrieNode parent)
Constructs a trie node
|
Copyright 2007-2017 Johan Hall, Jens Nilsson and Joakim Nivre.