maskedMaximum = mask & maximumTile;
// Write the element to the current index if the index tile
// granularity allows the way to fit within a single tile value.
if ((maskedMinimum) == (maskedMaximum)) {
indexes.get(i).write(new IntegerLongIndexElement(maskedMinimum, wayId));
// Stop once one index has received the way.
break;
}
}
}