Package org.jfree.chart.util
Class BooleanList
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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanTests the list for equality with another object (typically also a list).getBoolean(int index) Returns aBooleanfrom the list.inthashCode()Returns a hash code value for the object.voidsetBoolean(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 aBooleanfrom the list.- Parameters:
index- the index (zero-based).- Returns:
- a
Booleanfrom 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:
equalsin classAbstractObjectList- Parameters:
o- the other object.- Returns:
- A boolean.
-
hashCode
Returns a hash code value for the object.- Overrides:
hashCodein classAbstractObjectList- Returns:
- the hashcode
-