FileQueue.Builder<T>| 构造器和说明 |
|---|
FileQueueProxy() |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
add(T t) |
boolean |
addAll(Collection<? extends T> c) |
void |
clear() |
void |
close()
关闭队列
|
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
T |
element() |
void |
flush()
立即写出到文件
|
boolean |
isEmpty() |
Iterator<T> |
iterator() |
boolean |
offer(T t) |
T |
peek() |
T |
poll() |
T |
remove() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Object[] |
toArray() |
<T1> T1[] |
toArray(T1[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, parallelStream, removeIf, spliterator, streampublic int size()
size 在接口中 Collection<T>public boolean isEmpty()
isEmpty 在接口中 Collection<T>public boolean contains(Object o)
contains 在接口中 Collection<T>@Nonnull public Object[] toArray()
toArray 在接口中 Collection<T>@Nonnull public <T1> T1[] toArray(@Nonnull T1[] a)
toArray 在接口中 Collection<T>public boolean remove(Object o)
remove 在接口中 Collection<T>public boolean containsAll(@Nonnull Collection<?> c)
containsAll 在接口中 Collection<T>public boolean addAll(@Nonnull Collection<? extends T> c)
addAll 在接口中 Collection<T>public boolean removeAll(@Nonnull Collection<?> c)
removeAll 在接口中 Collection<T>public boolean retainAll(@Nonnull Collection<?> c)
retainAll 在接口中 Collection<T>public void clear()
clear 在接口中 Collection<T>Copyright © 2019–2022. All rights reserved.