org.codehaus.groovy.util
public class ManagedLinkedList<T> extends java.lang.Object
Constructor and Description |
---|
ManagedLinkedList(ReferenceBundle bundle) |
Modifier and Type | Method and 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)
this will return an array of non null elements of this list
|
public ManagedLinkedList(ReferenceBundle bundle)
public void add(T value)
value
- the valuepublic java.util.Iterator<T> iterator()
public T[] toArray(T[] tArray)
public boolean isEmpty()