org.simpleflatmapper.util.ArrayEnumarable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-util Show documentation
Show all versions of sfm-util Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.simpleflatmapper.util;
public class ArrayEnumarable implements Enumarable {
private final T[] objects;
private int currentIndex = -1;
public ArrayEnumarable(T[] objects) {
this.objects = objects;
}
@Override
public boolean next() {
currentIndex ++;
if (currentIndex < objects.length) {
return true;
}
return false;
}
@Override
public T currentValue() {
return objects[currentIndex];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy