1 8 9 package com.sleepycat.je.tree; 10 11 14 public class SearchResult { 15 public boolean exactParentFound; 16 public boolean keepSearching; 17 21 public boolean childNotResident; 22 public IN parent; 23 public int index; 24 25 public SearchResult() { 26 exactParentFound = false; 27 keepSearching = true; 28 parent = null; 29 index = -1; 30 childNotResident = false; 31 } 32 33 public String toString() { 34 return 35 "exactParentFound="+ exactParentFound + 36 " keepSearching=" + keepSearching + 37 " parent=" + ((parent == null)? "null": 38 Long.toString(parent.getNodeId())) + 39 " index=" + index + 40 " childNotResident=" + childNotResident; 41 } 42 } 43 | Popular Tags |