Package org.jfree.chart.util
Class BooleanList
- java.lang.Object
-
- org.jfree.chart.util.AbstractObjectList
-
- org.jfree.chart.util.BooleanList
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class BooleanList extends AbstractObjectList
A list ofBooleanobjects.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDFor serialization.-
Fields inherited from class org.jfree.chart.util.AbstractObjectList
DEFAULT_INITIAL_CAPACITY
-
-
Constructor Summary
Constructors Constructor Description BooleanList()Creates a new list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Tests the list for equality with another object (typically also a list).java.lang.BooleangetBoolean(int index)Returns aBooleanfrom the list.inthashCode()Returns a hash code value for the object.voidsetBoolean(int index, java.lang.Boolean b)Sets the value for an item in the list.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
For serialization.- See Also:
- Constant Field Values
-
-
Method Detail
-
getBoolean
public java.lang.Boolean getBoolean(int index)
Returns aBooleanfrom the list.- Parameters:
index- the index (zero-based).- Returns:
- a
Booleanfrom the list.
-
setBoolean
public void setBoolean(int index, java.lang.Boolean b)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
public boolean equals(java.lang.Object o)
Tests the list for equality with another object (typically also a list).- Overrides:
equalsin classAbstractObjectList- Parameters:
o- the other object.- Returns:
- A boolean.
-
hashCode
public int hashCode()
Returns a hash code value for the object.- Overrides:
hashCodein classAbstractObjectList- Returns:
- the hashcode
-
-