public interface TableService<E> extends CollectionService<E>, List<E>, Deque<E>, RandomAccess
| Modifier and Type | Method and Description |
|---|---|
TableService<E>[] |
split(int n,
boolean updateable)
Returns
n distinct parts of this object. |
TableService<E> |
subList(int fromIndex,
int toIndex) |
clone, comparatorperform, updateadd, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, toArray, toArrayadd, addFirst, addLast, contains, descendingIterator, element, getFirst, getLast, iterator, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, sizeTableService<E> subList(int fromIndex, int toIndex)
TableService<E>[] split(int n, boolean updateable)
Splittablen distinct parts of this object.
This method may return an array of size less than n
(e.g. an array of size one if this object cannot split).split in interface Splittable<CollectionService<E>>n - the number of parts.updateable - true if the returned parts can be updated
concurrently; false otherwise.Copyright © 2017. All rights reserved.