public class BlockingPipeList<T> extends Object implements List<T>, Closeable
| Constructor and Description |
|---|
BlockingPipeList(int pipeSize) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int i,
T t) |
boolean |
add(T t) |
boolean |
addAll(Collection<? extends T> values) |
boolean |
addAll(int i,
Collection<? extends T> ts) |
void |
clear() |
void |
close() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> objects) |
T |
get(int i) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<T> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int i) |
T |
remove(int i) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> objects) |
boolean |
retainAll(Collection<?> objects) |
T |
set(int i,
T t) |
int |
size() |
List<T> |
subList(int i,
int i2) |
Object[] |
toArray() |
<T1> T1[] |
toArray(T1[] t1s) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, replaceAll, sort, spliteratorparallelStream, removeIf, streampublic boolean add(T t)
public boolean remove(Object o)
public boolean containsAll(Collection<?> objects)
containsAll in interface Collection<T>containsAll in interface List<T>public boolean addAll(Collection<? extends T> values)
public boolean addAll(int i,
Collection<? extends T> ts)
public boolean removeAll(Collection<?> objects)
public boolean retainAll(Collection<?> objects)
public void clear()
public void close()
close in interface Closeableclose in interface AutoCloseablepublic int size()
public boolean isEmpty()
public boolean contains(Object o)
public Object[] toArray()
public <T1> T1[] toArray(T1[] t1s)
public int lastIndexOf(Object o)
lastIndexOf in interface List<T>public ListIterator<T> listIterator()
listIterator in interface List<T>public ListIterator<T> listIterator(int i)
listIterator in interface List<T>Copyright © 2022. All rights reserved.