}
// see if any of the arrays want to stop
for (final InputField field : this.inputFields) {
if (field instanceof HasFixedLength) {
final HasFixedLength fixed = (HasFixedLength) field;
if ((this.currentIndex + 1) >= fixed.length()) {
return false;
}
}
}