| java.lang.Object net.sf.oval.internal.util.ListOrderedSet
ListOrderedSet | public class ListOrderedSet implements Cloneable,Set<E>,List<E>(Code) | | author: Sebastian Thomschke |
Constructor Summary | |
public | ListOrderedSet() Constructs a new, empty collection with an initial capacity (16). | public | ListOrderedSet(int initialCapacity) Constructs a new, empty collection with the given initial capacity. |
ListOrderedSet | public ListOrderedSet()(Code) | | Constructs a new, empty collection with an initial capacity (16).
|
ListOrderedSet | public ListOrderedSet(int initialCapacity)(Code) | | Constructs a new, empty collection with the given initial capacity.
Parameters: initialCapacity - the initial capacity |
add | public boolean add(E e)(Code) | | |
add | public void add(int index, E e)(Code) | | |
clear | public void clear()(Code) | | |
get | public E get(int index)(Code) | | |
hashCode | public int hashCode()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
remove | public E remove(int index)(Code) | | |
set | public E set(int index, E element)(Code) | | |
subList | public List<E> subList(int fromIndex, int toIndex)(Code) | | |
toArray | public T[] toArray(T[] a)(Code) | | |
|
|