java.lang.Object
org.jfree.chart.util.AbstractObjectList
org.jfree.chart.util.BooleanList
- All Implemented Interfaces:
Serializable
,Cloneable
A list of
Boolean
objects.- See Also:
-
Field Summary
Fields inherited from class org.jfree.chart.util.AbstractObjectList
DEFAULT_INITIAL_CAPACITY
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Tests the list for equality with another object (typically also a list).getBoolean
(int index) Returns aBoolean
from the list.int
hashCode()
Returns a hash code value for the object.void
setBoolean
(int index, Boolean b) Sets the value for an item in the list.
-
Constructor Details
-
BooleanList
public BooleanList()Creates a new list.
-
-
Method Details
-
getBoolean
Returns aBoolean
from the list.- Parameters:
index
- the index (zero-based).- Returns:
- a
Boolean
from the list.
-
setBoolean
Sets the value for an item in the list. The list is expanded if necessary.- Parameters:
index
- the index (zero-based).b
- the boolean.
-
equals
Tests the list for equality with another object (typically also a list).- Overrides:
equals
in classAbstractObjectList
- Parameters:
o
- the other object.- Returns:
- A boolean.
-
hashCode
public int hashCode()Returns a hash code value for the object.- Overrides:
hashCode
in classAbstractObjectList
- Returns:
- the hashcode
-