|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.collections.primitives.adapters.BooleanListList
public final class BooleanListList
Adapts an BooleanList
to the
List
interface.
BooleanList
implementation in the "obvious" way.
Constructor Summary | |
---|---|
BooleanListList(BooleanList list)
Creates a List wrapping
the specified BooleanList . |
Method Summary | |
---|---|
void |
add(int index,
Object element)
|
boolean |
add(Object element)
|
boolean |
addAll(Collection c)
|
boolean |
addAll(int index,
Collection c)
|
void |
clear()
|
boolean |
contains(Object element)
|
boolean |
containsAll(Collection c)
|
boolean |
equals(Object obj)
|
Object |
get(int index)
|
protected BooleanCollection |
getBooleanCollection()
|
protected BooleanList |
getBooleanList()
|
int |
hashCode()
|
int |
indexOf(Object element)
|
boolean |
isEmpty()
|
Iterator |
iterator()
wraps the
BooleanIterator returned by my underlying
BooleanCollection , if any. |
int |
lastIndexOf(Object element)
|
ListIterator |
listIterator()
wraps the
BooleanListIterator
returned by my underlying
BooleanList ,
if any. |
ListIterator |
listIterator(int index)
wraps the
BooleanListIterator
returned by my underlying
BooleanList ,
if any. |
Object |
remove(int index)
|
boolean |
remove(Object element)
|
boolean |
removeAll(Collection c)
|
boolean |
retainAll(Collection c)
|
Object |
set(int index,
Object element)
|
int |
size()
|
List |
subList(int fromIndex,
int toIndex)
|
Object[] |
toArray()
|
Object[] |
toArray(Object[] A)
|
String |
toString()
|
static List |
wrap(BooleanList list)
Create a List wrapping
the specified BooleanList . |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
Constructor Detail |
---|
public BooleanListList(BooleanList list)
List
wrapping
the specified BooleanList
.
wrap(org.apache.commons.collections.primitives.BooleanList)
Method Detail |
---|
public static List wrap(BooleanList list)
List
wrapping
the specified BooleanList
. When
the given list is null
,
returns null
.
list
- the (possibly null
)
BooleanList
to wrap
List
wrapping the given
list, or null
when list is
null
.protected BooleanList getBooleanList()
public void add(int index, Object element)
add
in interface List
public boolean addAll(int index, Collection c)
addAll
in interface List
public Object get(int index)
get
in interface List
public int indexOf(Object element)
indexOf
in interface List
public int lastIndexOf(Object element)
lastIndexOf
in interface List
public ListIterator listIterator()
wraps
the
BooleanListIterator
returned by my underlying
BooleanList
,
if any.
listIterator
in interface List
public ListIterator listIterator(int index)
wraps
the
BooleanListIterator
returned by my underlying
BooleanList
,
if any.
listIterator
in interface List
public Object remove(int index)
remove
in interface List
public Object set(int index, Object element)
set
in interface List
public List subList(int fromIndex, int toIndex)
subList
in interface List
public boolean equals(Object obj)
equals
in interface Collection
equals
in interface List
equals
in class Object
public int hashCode()
hashCode
in interface Collection
hashCode
in interface List
hashCode
in class Object
protected final BooleanCollection getBooleanCollection()
public boolean add(Object element)
add
in interface Collection
public boolean addAll(Collection c)
addAll
in interface Collection
public void clear()
clear
in interface Collection
public boolean contains(Object element)
contains
in interface Collection
public boolean containsAll(Collection c)
containsAll
in interface Collection
public String toString()
toString
in class Object
public boolean isEmpty()
isEmpty
in interface Collection
public Iterator iterator()
wraps
the
BooleanIterator
returned by my underlying
BooleanCollection
, if any.
iterator
in interface Iterable
iterator
in interface Collection
public boolean remove(Object element)
remove
in interface Collection
public boolean removeAll(Collection c)
removeAll
in interface Collection
public boolean retainAll(Collection c)
retainAll
in interface Collection
public int size()
size
in interface Collection
public Object[] toArray()
toArray
in interface Collection
public Object[] toArray(Object[] A)
toArray
in interface Collection
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |