
com.app.common.db.UpdateListResult Maven / Gradle / Ivy
package com.app.common.db;
public class UpdateListResult {
private final int[] results;
private int cur = 0;
public UpdateListResult(int total) {
results = new int[total];
cur = 0;
}
public void add(int[] sub) {
System.arraycopy(sub, 0, results, cur, sub.length);
cur += sub.length;
}
public int[] getResults() {
return results;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy