public class ManagedLinkedList<T>
extends java.lang.Object
| Constructor | Description |
|---|---|
ManagedLinkedList(ReferenceBundle bundle) |
| Modifier and Type | Method | Description |
|---|---|---|
void |
add(T value) |
adds a value to the list
|
boolean |
isEmpty() |
returns if the list is empty
|
java.util.Iterator<T> |
iterator() |
returns an iterator, which allows the removal of elements.
|
T[] |
toArray(T[] tArray) |
Returns an array of non null elements from the source array.
|
public ManagedLinkedList(ReferenceBundle bundle)
public void add(T value)
value - the valuepublic java.util.Iterator<T> iterator()
public T[] toArray(T[] tArray)
tArray - the source arraypublic boolean isEmpty()