public class BooleanList extends AbstractObjectList implements java.lang.Cloneable, java.io.Serializable
Boolean
objects.DEFAULT_INITIAL_CAPACITY
Constructor and Description |
---|
BooleanList()
Creates a new list
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Returns an independent copy of the list.
|
boolean |
equals(java.lang.Object o)
Tests the list for equality with another object (typically also a list).
|
java.lang.Boolean |
getBoolean(int index)
Returns a
Boolean from the list. |
int |
hashCode()
Returns a hash code value for the object.
|
void |
setBoolean(int index,
java.lang.Boolean b)
Sets the value for an item in the list.
|
public java.lang.Boolean getBoolean(int index)
Boolean
from the list.index
- the index (zero-based).Boolean
from the list.public void setBoolean(int index, java.lang.Boolean b)
index
- the index (zero-based).b
- the boolean.public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in class AbstractObjectList
java.lang.CloneNotSupportedException
- this shouldn't happen.public boolean equals(java.lang.Object o)
equals
in class AbstractObjectList
o
- the other object.public int hashCode()
hashCode
in class AbstractObjectList