T
- The type stored in the lists.public final class RowList<T> extends Object implements List<Row<T>>
Each access returns a Row
drawn by taking an element from each list.
The rows only expose equals and hashcode, as the information theoretic calculations only care about equality.
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
Row<T> element)
Unsupported.
|
boolean |
add(Row<T> e)
Unsupported.
|
boolean |
addAll(Collection<? extends Row<T>> c)
Unsupported.
|
boolean |
addAll(int index,
Collection<? extends Row<T>> c)
Unsupported.
|
void |
clear()
Unsupported.
|
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
Row<T> |
get(int index) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<Row<T>> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<Row<T>> |
listIterator() |
ListIterator<Row<T>> |
listIterator(int index) |
Row<T> |
remove(int index)
Unsupported.
|
boolean |
remove(Object o)
Unsupported.
|
boolean |
removeAll(Collection<?> c)
Unsupported.
|
boolean |
retainAll(Collection<?> c)
Unsupported.
|
Row<T> |
set(int index,
Row<T> element)
Unsupported.
|
int |
size() |
List<Row<T>> |
subList(int fromIndex,
int toIndex)
Unsupported.
|
Object[] |
toArray() |
<U> U[] |
toArray(U[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, replaceAll, sort, spliterator
parallelStream, removeIf, stream
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public Object[] toArray()
public <U> U[] toArray(U[] a)
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<Row<T>>
containsAll
in interface List<Row<T>>
public int lastIndexOf(Object o)
lastIndexOf
in interface List<Row<T>>
public ListIterator<Row<T>> listIterator()
listIterator
in interface List<Row<T>>
public ListIterator<Row<T>> listIterator(int index)
listIterator
in interface List<Row<T>>
public List<Row<T>> subList(int fromIndex, int toIndex)
public boolean remove(Object o)
public boolean addAll(Collection<? extends Row<T>> c)
public boolean addAll(int index, Collection<? extends Row<T>> c)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public void clear()
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.