T
- type of the list elementspublic class EvictingBoundedList<T> extends Object implements Iterable<T>, Serializable
The list by itself is serializable, but a full list can only be serialized if the values are also serializable.
Constructor and Description |
---|
EvictingBoundedList(EvictingBoundedList<T> other) |
EvictingBoundedList(int sizeLimit) |
EvictingBoundedList(int sizeLimit,
T defaultElement) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(T t) |
void |
clear() |
T |
get(int index) |
T |
getDefaultElement() |
int |
getSizeLimit() |
boolean |
isEmpty() |
Iterator<T> |
iterator() |
T |
set(int index,
T element) |
int |
size() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public EvictingBoundedList(int sizeLimit)
public EvictingBoundedList(EvictingBoundedList<T> other)
public EvictingBoundedList(int sizeLimit, T defaultElement)
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.