// at something
// smaller than the current element.
while (it.isValid()
&& (this.iteratorComparator
.compare(it.get(), this.indexes[this.currentIndex].get()) < 0)) {
it.inc();
}
}
}
// Increment the current index.
this.indexes[this.currentIndex].inc();