|
PCJ API Version 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object bak.pcj.AbstractBooleanCollection bak.pcj.list.AbstractBooleanList bak.pcj.adapter.ListToBooleanListAdapter
This class represents adaptions of Java Collections Framework lists to primitive lists of boolean values. The adapter is implemented as a wrapper around the list. Thus, changes to the underlying list are reflected by this list and vice versa.
Adapters from JCF collections to primitive collections will fail if the JCF collection contains null values or values of the wrong class. However, adapters are not fast failing in the case that the underlying collection should contain illegal values. To implement fast failure would require every operation to check every element of the underlying collection before doing anything. Instead validation methods are provided. They can be called using the assertion facility in the client code:
ListToBooleanListAdapter s; ... assert s.validate();or by letting the adapter throw an exception on illegal values:
ListToBooleanListAdapter s; ... s.evalidate(); // Throws an exception on illegal valuesEither way, validation must be invoked directly by the client code.
Field Summary | |
protected List |
list
The underlying list. |
Constructor Summary | |
ListToBooleanListAdapter(List list)
Creates a new adaption of a list to a list of boolean values. |
|
ListToBooleanListAdapter(List list,
boolean validate)
Creates a new adaption of a list to a list of boolean values. |
Method Summary | |
void |
add(int index,
boolean v)
Throws UnsupportedOperationException. |
void |
evalidate()
Validates the list underlying this adapter and throws an exception if it is invalid. |
boolean |
get(int index)
Returns the element at a specified position in this list. |
BooleanListIterator |
listIterator(int index)
Returns a list iterator over this list, starting from a specified index. |
boolean |
removeElementAt(int index)
Throws UnsupportedOperationException. |
boolean |
set(int index,
boolean v)
Sets a specified element to a new value. |
int |
size()
Returns the number of elements in this collection. |
boolean |
validate()
Indicates whether the underlying list is valid for this adapter. |
Methods inherited from class bak.pcj.list.AbstractBooleanList |
add, addAll, equals, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator |
Methods inherited from class bak.pcj.AbstractBooleanCollection |
addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString, trimToSize |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface bak.pcj.BooleanCollection |
addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, trimToSize |
Field Detail |
protected List list
Constructor Detail |
public ListToBooleanListAdapter(List list)
list
- the underlying list. This list must
consist of values of class
Boolean
. Otherwise a
ClassCastException
will be thrown by some methods.
NullPointerException
- if list is null.public ListToBooleanListAdapter(List list, boolean validate)
list
- the underlying list. This collection must
consist of values of class
Boolean
. Otherwise a
ClassCastException
will be thrown by some methods.validate
- indicates whether list should
be checked for illegal values.
NullPointerException
- if list is null.
IllegalStateException
- if validate is true and
list contains a null value
or a value that is not of class
Boolean
.Method Detail |
public void add(int index, boolean v)
AbstractBooleanList
add
in interface BooleanList
add
in class AbstractBooleanList
public boolean get(int index)
BooleanList
index
- the position of the element to return.
public BooleanListIterator listIterator(int index)
BooleanList
listIterator
in interface BooleanList
listIterator
in class AbstractBooleanList
public boolean removeElementAt(int index)
AbstractBooleanList
removeElementAt
in interface BooleanList
removeElementAt
in class AbstractBooleanList
public boolean set(int index, boolean v)
BooleanList
index
- the index of the element whose value to set.v
- the new value of the specified element.
public int size()
BooleanCollection
size
in interface BooleanCollection
size
in class AbstractBooleanCollection
public boolean validate()
Boolean
values and no null
values.
public void evalidate()
Boolean
values and no null values.
IllegalStateException
- if the underlying list is invalid.
|
PCJ API Version 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |