E - the type of elements in this partial collection.public class PartialCollection<E> extends Object implements Collection<E>
| Constructor and Description |
|---|
PartialCollection(long offset,
long limit,
long fullSize)
Constructs a PartialCollection with a specified offset, limit, and full size.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E e) |
boolean |
addAll(Collection<? extends E> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
boolean |
equals(Object o) |
long |
fullSize()
Gets the size of the full collection that this partial collection is based off of.
|
int |
hashCode() |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
long |
limit()
Gets the maximum number of items within the full collection that begin at
offset. |
long |
offset()
Gets the offset within the full collection where this collection's items begin.
|
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitparallelStream, removeIf, spliterator, streampublic PartialCollection(long offset, long limit, long fullSize)
offset - the offset within in the full collection.limit - the maximum number of items after the offset.fullSize - the total number of items in the full collection.public long offset()
public long limit()
offset.public long fullSize()
public boolean add(E e)
add in interface Collection<E>public boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>public void clear()
clear in interface Collection<E>public boolean contains(Object o)
contains in interface Collection<E>public boolean containsAll(Collection<?> c)
containsAll in interface Collection<E>public boolean equals(Object o)
equals in interface Collection<E>equals in class Objectpublic int hashCode()
hashCode in interface Collection<E>hashCode in class Objectpublic boolean isEmpty()
isEmpty in interface Collection<E>public boolean remove(Object o)
remove in interface Collection<E>public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>public int size()
size in interface Collection<E>public Object[] toArray()
toArray in interface Collection<E>public <T> T[] toArray(T[] a)
toArray in interface Collection<E>