Searched refs:newKey (Results 1 – 2 of 2) sorted by relevance
92 public BST find_tree(String newKey) { in find_tree() argument93 return find_tree(newKey, true); in find_tree()96 public BSTItem find(String newKey) { in find() argument97 return find(newKey, true); in find()101 public BST find_tree(String newKey, boolean exactMatch) { in find_tree() argument108 int comp = data.compare(newKey, exactMatch); in find_tree()114 rv = left.find_tree(newKey, exactMatch); in find_tree()117 rv = right.find_tree(newKey, exactMatch); in find_tree()126 public BSTItem find(String newKey, boolean exactMatch) { in find() argument128 newKey); in find()[all …]
45 public BSTItem(String newKey) { in BSTItem() argument46 this(newKey, null); in BSTItem()49 public BSTItem(String newKey, Object obj) { in BSTItem() argument50 key = newKey.toLowerCase(); in BSTItem()