java.lang.Object |
↳ |
com.pnfsoftware.jeb.util.collect.WeakPseudoList<T> |
Class Overview
A list of weak references. Holding objects in this list will not prevent them from being GC'ed.
This interface does not not abide to the usual Java List interface, hence the "pseudo".
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Iterable
abstract
void
|
forEach(Consumer<? super T> arg0)
|
abstract
Iterator<T>
|
iterator()
|
abstract
Spliterator<T>
|
spliterator()
|
|
Public Constructors
public
WeakPseudoList
(int initialCapacity)
public
WeakPseudoList
(Iterable<T> l)
Public Methods
public
void
add
(int index, T e)
public
void
addAll
(Iterable<T> l)
public
boolean
isEmpty
()
public
Iterator<T>
iterator
()
public
T
remove
(int index)
public
T
set
(int index, T e)