final int index = indexOf( hashCode,
this.table.length );
FieldIndexEntry current = (FieldIndexEntry) this.table[index];
while ( current != null ) {
if ( current.matches( object,
hashCode ) ) {
return true;
}
current = (FieldIndexEntry) current.next;
}