Packagesystem.data.trees
Classpublic class TrieEntry
InheritanceTrieEntry Inheritance MapEntry Inheritance Object

An entry in a Trie ADT.



Public Properties
 PropertyDefined By
 Inheritedkey : *
Indicates the key corresponding to this entry.
MapEntry
 Inheritedvalue : *
Indicates the value corresponding to this entry.
MapEntry
Public Methods
 MethodDefined By
  
TrieEntry(key:* = null, value:* = null)
Creates a new TrieEntry instance.
TrieEntry
 Inherited
clone():*
Creates and returns a shallow copy of the object.
MapEntry
 Inherited
toString():String
Returns the String representation of the object.
MapEntry
Constructor Detail
TrieEntry()Constructor
public function TrieEntry(key:* = null, value:* = null)

Creates a new TrieEntry instance.

Parameters
key:* (default = null) — The key representation of the entry.
 
value:* (default = null) — The value representation of the entry.