int nHash = obj.hashCode();
nHash = Math.abs(nHash);
nHash = nHash % nodVals.length;
ListNode nodCurrent = nodVals[nHash];
//nCount++;
while(nodCurrent != null){
nCount++;
if(nodCurrent.getValue().equals(obj)){
strR += obj + " found at " + nHash + " : ";
break;
}
nodCurrent = nodCurrent.getNext();
}
strR += nCount + " iterations.";
return strR;