Uses of Class
org.apache.lucene.search.suggest.jaspell.JaspellTernarySearchTrie.TSTNode
Packages that use JaspellTernarySearchTrie.TSTNode
-
Uses of JaspellTernarySearchTrie.TSTNode in org.apache.lucene.search.suggest.jaspell
Fields in org.apache.lucene.search.suggest.jaspell declared as JaspellTernarySearchTrie.TSTNodeModifier and TypeFieldDescriptionprotected final JaspellTernarySearchTrie.TSTNode[]JaspellTernarySearchTrie.TSTNode.relativesThe relative nodes.private JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.rootNodeDeprecated.The base node in the trie.Methods in org.apache.lucene.search.suggest.jaspell that return JaspellTernarySearchTrie.TSTNodeModifier and TypeMethodDescriptionprivate JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.deleteNodeRecursion(JaspellTernarySearchTrie.TSTNode currentNode) Deprecated.Recursively visits each node to be deleted.JaspellTernarySearchTrie.getNode(CharSequence key) Deprecated.Returns the node indexed by key, ornullif that node doesn't exist.protected JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.getNode(CharSequence key, JaspellTernarySearchTrie.TSTNode startNode) Deprecated.Returns the node indexed by key, ornullif that node doesn't exist.protected JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.getOrCreateNode(CharSequence key) Deprecated.Returns the node indexed by key, creating that node if it doesn't exist, and creating any required intermediate nodes if they don't exist.(package private) JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.getRoot()Deprecated.Methods in org.apache.lucene.search.suggest.jaspell with parameters of type JaspellTernarySearchTrie.TSTNodeModifier and TypeMethodDescriptionprivate voidJaspellTernarySearchTrie.deleteNode(JaspellTernarySearchTrie.TSTNode nodeToDelete) Deprecated.Deletes the node passed in as an argument.private JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.deleteNodeRecursion(JaspellTernarySearchTrie.TSTNode currentNode) Deprecated.Recursively visits each node to be deleted.protected StringJaspellTernarySearchTrie.getKey(JaspellTernarySearchTrie.TSTNode node) Deprecated.Returns the key that indexes the node argument.protected JaspellTernarySearchTrie.TSTNodeJaspellTernarySearchTrie.getNode(CharSequence key, JaspellTernarySearchTrie.TSTNode startNode) Deprecated.Returns the node indexed by key, ornullif that node doesn't exist.JaspellTernarySearchTrie.matchAlmostRecursion(JaspellTernarySearchTrie.TSTNode currentNode, int charIndex, int d, CharSequence matchAlmostKey, int matchAlmostNumReturnValues, List<String> matchAlmostResult2, boolean upTo) Deprecated.Recursivelly vists the nodes in order to find the ones that almost match a given key.protected intJaspellTernarySearchTrie.numDataNodes(JaspellTernarySearchTrie.TSTNode startingNode) Deprecated.Returns the number of nodes in the subtrie below and including the starting node.protected intJaspellTernarySearchTrie.numNodes(JaspellTernarySearchTrie.TSTNode startingNode) Deprecated.Returns the total number of nodes in the subtrie below and including the starting Node.private voidJaspellLookup.readRecursively(DataInput in, JaspellTernarySearchTrie.TSTNode node) Deprecated.private intJaspellTernarySearchTrie.recursiveNodeCalculator(JaspellTernarySearchTrie.TSTNode currentNode, boolean checkData, int numNodes2) Deprecated.Recursivelly visists each node to calculate the number of nodes.(package private) voidJaspellTernarySearchTrie.setRoot(JaspellTernarySearchTrie.TSTNode newRoot) Deprecated.JaspellTernarySearchTrie.sortKeys(JaspellTernarySearchTrie.TSTNode startNode, int numReturnValues) Deprecated.Returns keys sorted in alphabetical order.JaspellTernarySearchTrie.sortKeysRecursion(JaspellTernarySearchTrie.TSTNode currentNode, int sortKeysNumReturnValues, List<String> sortKeysResult2) Deprecated.Returns keys sorted in alphabetical order.private voidJaspellLookup.writeRecursively(DataOutput out, JaspellTernarySearchTrie.TSTNode node) Deprecated.Constructors in org.apache.lucene.search.suggest.jaspell with parameters of type JaspellTernarySearchTrie.TSTNodeModifierConstructorDescriptionprotectedTSTNode(char splitchar, JaspellTernarySearchTrie.TSTNode parent) Constructor method.