int factCount = 0;
int bucketCount = 0;
FastIterator it = LinkedList.fastIterator;
for ( int i = 0, length = entries.length; i < length; i++ ) {
if ( entries[i] != null ) {
RightTupleList rightTupleList = (RightTupleList) entries[i];
while ( rightTupleList != null ) {
if ( rightTupleList.first != null ) {
Entry entry = rightTupleList.first;
while ( entry != null ) {
entry = it.next( entry );
factCount++;
}
} else {
System.out.println( "error : fieldIndexHashTable cannot have empty FieldIndexEntry objects" );
}
rightTupleList = (RightTupleList) rightTupleList.getNext();
bucketCount++;
}
}
}