forked from intercom/intercom-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSegmentCollection.java
More file actions
51 lines (40 loc) · 1.25 KB
/
Copy pathSegmentCollection.java
File metadata and controls
51 lines (40 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package io.intercom.api;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Iterator;
import java.util.List;
@SuppressWarnings("UnusedDeclaration")
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class SegmentCollection extends TypedDataCollection<Segment> implements Iterator<Segment> {
protected TypedDataCollectionIterator<Segment> iterator;
public SegmentCollection() {
type = "segment.list";
iterator = new TypedDataCollectionIterator<Segment>(this);
}
@Override
public SegmentCollection nextPage() {
return fetchNextPage(SegmentCollection.class);
}
@SuppressWarnings("EmptyMethod")
@JsonProperty("segments")
@Override
public List<Segment> getPage() {
return super.getPage();
}
public boolean hasNext() {
return iterator.hasNext();
}
public Segment next() {
return iterator.next();
}
public void remove() {
iterator.remove();
}
@Override
public String toString() {
return "SegmentCollection{" +
"} " + super.toString();
}
}