com.box.sdk.BoxGroupIterator Maven / Gradle / Ivy
package com.box.sdk;
import java.net.URL;
import java.util.Iterator;
import com.eclipsesource.json.JsonObject;
class BoxGroupIterator implements Iterator {
private static final long LIMIT = 1000;
private final BoxAPIConnection api;
private final JSONIterator jsonIterator;
BoxGroupIterator(BoxAPIConnection api, URL url) {
this.api = api;
this.jsonIterator = new JSONIterator(api, url, LIMIT);
}
public boolean hasNext() {
return this.jsonIterator.hasNext();
}
public BoxGroup.Info next() {
JsonObject nextJSONObject = this.jsonIterator.next();
String id = nextJSONObject.get("id").asString();
BoxGroup group = new BoxGroup(this.api, id);
return group.new Info(nextJSONObject);
}
public void remove() {
throw new UnsupportedOperationException();
}
}