public class ArrayBooleanCollection extends AbstractBooleanCollection implements Cloneable
BooleanCollection
for
primitive boolean
elements.
This collection implementation allows multiple copies of the same value to be added. Internally, it uses an array, and behaves much like a list.
This class implements Collection
allowing
seamless integration with other APIs.
Add, Remove and Clear are supported.
Modifier and Type | Class and Description |
---|---|
protected static class |
ArrayBooleanCollection.PIterator
Iterator.
|
Constructor and Description |
---|
ArrayBooleanCollection()
Constructor.
|
ArrayBooleanCollection(boolean[] values)
Constructor that copies the specified values.
|
ArrayBooleanCollection(Collection<?> coll)
Constructs a new collection by copying values from another collection.
|
ArrayBooleanCollection(int initialSize)
Constructor that defines an initial size for the internal storage array.
|
ArrayBooleanCollection(Iterator<Boolean> it)
Constructs a new collection by copying values from an iterator.
|
Modifier and Type | Method and Description |
---|---|
boolean |
add(boolean value)
Adds a primitive value to this collection.
|
boolean |
addAll(boolean[] values)
Adds an array of primitive values to this collection.
|
boolean |
addAll(BooleanCollection values)
Adds a collection of primitive values to this collection.
|
protected void |
arrayCopy(int fromIndex,
boolean[] dest,
int destIndex,
int size)
Copies data from this collection into the specified array.
|
void |
clear()
Clears the collection of all elements.
|
Object |
clone()
Clone implementation that calls Object clone().
|
boolean |
contains(boolean value)
Checks whether this collection contains a specified primitive value.
|
protected boolean |
doAdd(int index,
boolean[] values)
Internal implementation to add to this collection at the specified index.
|
protected void |
doRemoveIndex(int index)
Internal implementation to remove the element at the specified index.
|
protected void |
ensureCapacity(int reqCapacity)
Internal implementation to ensure that the internal storage array has
at least the specified size.
|
protected boolean |
isAddModifiable()
Are the add methods supported.
|
boolean |
isModifiable()
Checks whether the object can currently be modified.
|
protected boolean |
isRemoveModifiable()
Are the remove methods supported.
|
BooleanIterator |
iterator()
Gets an iterator over this collection capable of accessing the primitive values.
|
void |
optimize()
Optimizes the implementation.
|
int |
size()
Gets the current size of the collection.
|
add, addAll, checkAddModifiable, checkRemoveModifiable, contains, containsAll, containsAll, containsAll, containsAny, containsAny, containsAny, isToPrimitivePossible, remove, removeAll, removeAll, removeAll, removeAll, removeFirst, retainAll, retainAll, retainAll, toArray, toArray, toBooleanArray, toBooleanArray, toObject, toPrimitive, toPrimitiveArray, toString
isEmpty
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
isEmpty
equals, hashCode, isEmpty
public ArrayBooleanCollection()
public ArrayBooleanCollection(int initialSize)
initialSize
- the initial size of the internal array, negative treated as zeropublic ArrayBooleanCollection(boolean[] values)
values
- an array of values to copy, null treated as zero size arraypublic ArrayBooleanCollection(Collection<?> coll)
coll
- a collection of values to copy, null treated as zero size collectionpublic ArrayBooleanCollection(Iterator<Boolean> it)
it
- an iterator of values to extract, null treated as zero size collectionpublic int size()
size
in interface Collection<Boolean>
size
in interface PrimitiveCollectable<Boolean>
public BooleanIterator iterator()
iterator
in interface Iterable<Boolean>
iterator
in interface Collection<Boolean>
iterator
in interface BooleanCollection
iterator
in interface BooleanIterable
public boolean add(boolean value)
add
in interface BooleanCollection
add
in class AbstractBooleanCollection
value
- the value to add to this collectiontrue
if this collection was modified by this method callIllegalArgumentException
- if value is rejected by this collectionpublic void optimize()
This implementation changes the internal array to be the same size as the size of the collection.
optimize
in interface PrimitiveCollectable<Boolean>
optimize
in class AbstractPrimitiveCollectable<Boolean>
protected boolean isAddModifiable()
isAddModifiable
in class AbstractBooleanCollection
true
protected boolean isRemoveModifiable()
isRemoveModifiable
in class AbstractBooleanCollection
true
public boolean isModifiable()
isModifiable
in interface PrimitiveCollectable<Boolean>
isModifiable
in class AbstractBooleanCollection
true
public boolean contains(boolean value)
This implementation uses the internal array directly.
contains
in interface BooleanCollection
contains
in class AbstractBooleanCollection
value
- the value to search fortrue
if the value is foundpublic void clear()
This implementation resets the size, but does not reduce the internal storage array.
clear
in interface Collection<Boolean>
clear
in interface PrimitiveCollectable<Boolean>
clear
in class AbstractBooleanCollection
public boolean addAll(boolean[] values)
addAll
in interface BooleanCollection
addAll
in class AbstractBooleanCollection
values
- the values to add to this collectiontrue
if this collection was modified by this method callpublic boolean addAll(BooleanCollection values)
addAll
in interface BooleanCollection
addAll
in class AbstractBooleanCollection
values
- the values to add to this collection, null treated as empty collectiontrue
if this collection was modified by this method callpublic Object clone()
clone
in interface PrimitiveCollectable<Boolean>
clone
in class AbstractPrimitiveCollectable<Boolean>
protected void arrayCopy(int fromIndex, boolean[] dest, int destIndex, int size)
arrayCopy
in class AbstractBooleanCollection
fromIndex
- the index to start fromdest
- the destination arraydestIndex
- the destination start indexsize
- the number of items to copyprotected boolean doAdd(int index, boolean[] values)
index
- the index to add at, validvalues
- the array to add, not nullprotected void doRemoveIndex(int index)
index
- the index, validprotected void ensureCapacity(int reqCapacity)
reqCapacity
- the amount to expand toCopyright © 2005-2012 Joda.org. All Rights Reserved.