search

goog.structs.TreeNode<KEY, VALUE>

Provided By
Extends

Generic tree node data structure with arbitrary number of child nodes. It is possible to create a dynamic tree structure by overriding #getParent and #getChildren in a subclass. All other getters will automatically work.

new TreeNode<KEY, VALUE>( key, value )

Parameters
key(KEY|null)

Key.

value(VALUE|null)

Value.

Instance Methods

Static Functions