PCJ API
Version 1.2

bak.pcj.list
Class UnmodifiableShortList

java.lang.Object
  extended bybak.pcj.UnmodifiableShortCollection
      extended bybak.pcj.list.UnmodifiableShortList
All Implemented Interfaces:
ShortCollection, ShortList

public class UnmodifiableShortList
extends UnmodifiableShortCollection
implements ShortList

This class represents unmodifiable lists of short values.

Since:
1.0
See Also:
Collections.unmodifiableList(java.util.List)

Field Summary
 
Fields inherited from class bak.pcj.UnmodifiableShortCollection
collection
 
Constructor Summary
UnmodifiableShortList(ShortList l)
          Creates a new unmodifiable list on an existing list.
 
Method Summary
 void add(int index, short v)
          Throws UnsupportedOperationException.
 boolean addAll(int index, ShortCollection c)
          Throws UnsupportedOperationException.
 short get(int index)
          Returns the element at a specified position in this list.
 int indexOf(int index, short c)
          Returns the index of the first occurance of a specified element in this list after or at a specified index.
 int indexOf(short c)
          Returns the index of the first occurance of a specified element in this list.
 int lastIndexOf(int index, short c)
          Returns the index of the last occurance of a specified element in this list before a specified index.
 int lastIndexOf(short c)
          Returns the index of the last occurance of a specified element in this list.
 ShortListIterator listIterator()
          Returns a list iterator over this list.
 ShortListIterator listIterator(int index)
          Returns a list iterator over this list, starting from a specified index.
 short removeElementAt(int index)
          Throws UnsupportedOperationException.
 short set(int index, short v)
          Throws UnsupportedOperationException.
 
Methods inherited from class bak.pcj.UnmodifiableShortCollection
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, trimToSize
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface bak.pcj.ShortCollection
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, trimToSize
 

Constructor Detail

UnmodifiableShortList

public UnmodifiableShortList(ShortList l)
Creates a new unmodifiable list on an existing list. The result is a list whose elements and behaviour is the same as the existing list's except that the new list cannot be modified.

Parameters:
l - the existing list to make unmodifiable.
Throws:
NullPointerException - if l is null.
Method Detail

add

public void add(int index,
                short v)
Throws UnsupportedOperationException.

Specified by:
add in interface ShortList
Parameters:
index - the index at which to add the element. If index == size() the element is appended to this list.
v - the short value to add to this list.
Throws:
UnsupportedOperationException - unconditionally.
See Also:
ShortCollection.add(short), ShortCollection.addAll(ShortCollection), ShortList.addAll(int,ShortCollection)

addAll

public boolean addAll(int index,
                      ShortCollection c)
Throws UnsupportedOperationException.

Specified by:
addAll in interface ShortList
Parameters:
index - the index at which to insert the elements of the specified collection. If index == size() the elements are appended to this list.
c - the collection whose elements to add to this list.
Returns:
true if this list was modified as a result of adding the elements of c; returns false otherwise.
Throws:
UnsupportedOperationException - unconditionally.
See Also:
ShortCollection.add(short), ShortList.add(int, short), ShortCollection.addAll(ShortCollection)

get

public short get(int index)
Description copied from interface: ShortList
Returns the element at a specified position in this list.

Specified by:
get in interface ShortList
Parameters:
index - the position of the element to return.
Returns:
the element at the specified position.

indexOf

public int indexOf(short c)
Description copied from interface: ShortList
Returns the index of the first occurance of a specified element in this list.

Specified by:
indexOf in interface ShortList
Parameters:
c - the element to find.
Returns:
the index of the first occurance of the specified element in this list; returns -1, if the element is not contained in this list.

indexOf

public int indexOf(int index,
                   short c)
Description copied from interface: ShortList
Returns the index of the first occurance of a specified element in this list after or at a specified index.

Specified by:
indexOf in interface ShortList
Parameters:
c - the element to find.
index - the index at which to start the search.
Returns:
the index of the first occurance of the specified element in this list; returns -1, if the element is not contained in this list.
Since:
1.2

lastIndexOf

public int lastIndexOf(short c)
Description copied from interface: ShortList
Returns the index of the last occurance of a specified element in this list.

Specified by:
lastIndexOf in interface ShortList
Parameters:
c - the element to find.
Returns:
the index of the last occurance of the specified element in this list; returns -1, if the element is not contained in this list.

lastIndexOf

public int lastIndexOf(int index,
                       short c)
Description copied from interface: ShortList
Returns the index of the last occurance of a specified element in this list before a specified index.

Specified by:
lastIndexOf in interface ShortList
Parameters:
c - the element to find.
index - the index at which to start the search. Note that the element at index is not included in the search.
Returns:
the index of the last occurance of the specified element in this list; returns -1, if the element is not contained in this list.
Since:
1.2

listIterator

public ShortListIterator listIterator()
Description copied from interface: ShortList
Returns a list iterator over this list.

Specified by:
listIterator in interface ShortList
Returns:
a list iterator over this list.

listIterator

public ShortListIterator listIterator(int index)
Description copied from interface: ShortList
Returns a list iterator over this list, starting from a specified index.

Specified by:
listIterator in interface ShortList
Parameters:
index - the index at which to begin the iteration.
Returns:
a list iterator over this list.

removeElementAt

public short removeElementAt(int index)
Throws UnsupportedOperationException.

Specified by:
removeElementAt in interface ShortList
Parameters:
index - the index of the element to remove.
Returns:
the value of the element removed.
Throws:
UnsupportedOperationException - unconditionally.

set

public short set(int index,
                 short v)
Throws UnsupportedOperationException.

Specified by:
set in interface ShortList
Parameters:
index - the index of the element whose value to set.
v - the new value of the specified element.
Returns:
the previous value of the element.
Throws:
UnsupportedOperationException - unconditionally.

PCJ API
Version 1.2

Report a bug or request a feature.
Further information on the development and latest release of PCJ can be found at the project homepage.

Primitive Collections for Java is released under the GNU Lesser General Public License.
Copyright © 2002, 2003 Søren Bak. All Rights Reserved.

Hosted by SourceForge.net
SourceForge.net Logo