org.apache.commons.collections.primitives.adapters
Class ShortListList
java.lang.Object
org.apache.commons.collections.primitives.adapters.AbstractShortCollectionCollection
org.apache.commons.collections.primitives.adapters.AbstractShortListList
org.apache.commons.collections.primitives.adapters.ShortListList
- All Implemented Interfaces:
- Collection, List, Serializable
- public final class ShortListList
- extends AbstractShortListList
- implements Serializable
Adapts an ShortList
to the
List
interface.
This implementation delegates most methods
to the provided ShortList
implementation in the "obvious" way.
- Since:
- Commons Primitives 1.0
- Version:
- $Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $
- Author:
- Rodney Waldhoff
- See Also:
- Serialized Form
Methods inherited from interface java.util.List |
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
_list
private ShortList _list
ShortListList
public ShortListList(ShortList list)
- Creates a
List
wrapping
the specified ShortList
.
- See Also:
wrap(org.apache.commons.collections.primitives.ShortList)
wrap
public static List wrap(ShortList list)
- Create a
List
wrapping
the specified ShortList
. When
the given list is null
,
returns null
.
- Parameters:
list
- the (possibly null
)
ShortList
to wrap
- Returns:
- a
List
wrapping the given
list, or null
when list is
null
.
getShortList
protected ShortList getShortList()
- Specified by:
getShortList
in class AbstractShortListList
add
public void add(int index,
Object element)
- Specified by:
add
in interface List
addAll
public boolean addAll(int index,
Collection c)
- Specified by:
addAll
in interface List
get
public Object get(int index)
- Specified by:
get
in interface List
indexOf
public int indexOf(Object element)
- Specified by:
indexOf
in interface List
lastIndexOf
public int lastIndexOf(Object element)
- Specified by:
lastIndexOf
in interface List
listIterator
public ListIterator listIterator()
wraps
the
ShortListIterator
returned by my underlying
ShortList
,
if any.
- Specified by:
listIterator
in interface List
listIterator
public ListIterator listIterator(int index)
wraps
the
ShortListIterator
returned by my underlying
ShortList
,
if any.
- Specified by:
listIterator
in interface List
remove
public Object remove(int index)
- Specified by:
remove
in interface List
set
public Object set(int index,
Object element)
- Specified by:
set
in interface List
subList
public List subList(int fromIndex,
int toIndex)
- Specified by:
subList
in interface List
equals
public boolean equals(Object obj)
- Specified by:
equals
in interface List
hashCode
public int hashCode()
- Specified by:
hashCode
in interface List
getShortCollection
protected final ShortCollection getShortCollection()
- Specified by:
getShortCollection
in class AbstractShortCollectionCollection
add
public boolean add(Object element)
- Specified by:
add
in interface Collection
addAll
public boolean addAll(Collection c)
- Specified by:
addAll
in interface Collection
clear
public void clear()
- Specified by:
clear
in interface Collection
contains
public boolean contains(Object element)
- Specified by:
contains
in interface Collection
containsAll
public boolean containsAll(Collection c)
- Specified by:
containsAll
in interface Collection
toString
public String toString()
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Collection
iterator
public Iterator iterator()
wraps
the
ShortIterator
returned by my underlying
ShortCollection
,
if any.
- Specified by:
iterator
in interface Collection
remove
public boolean remove(Object element)
- Specified by:
remove
in interface Collection
removeAll
public boolean removeAll(Collection c)
- Specified by:
removeAll
in interface Collection
retainAll
public boolean retainAll(Collection c)
- Specified by:
retainAll
in interface Collection
size
public int size()
- Specified by:
size
in interface Collection
toArray
public Object[] toArray()
- Specified by:
toArray
in interface Collection
toArray
public Object[] toArray(Object[] A)
- Specified by:
toArray
in interface Collection
Copyright (c) 2002-2003 - Apache Software Foundation