org.jfree.util
Class BooleanList
- Cloneable, Serializable
A list of Boolean objects.
boolean | equals(Object o)- Tests the list for equality with another object (typically also a list).
|
Boolean | getBoolean(int index)- Returns a
Boolean 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.
|
getBoolean
public Boolean getBoolean(int index)
Returns a Boolean from the list.
index - the index (zero-based).
setBoolean
public void setBoolean(int index,
Boolean b) Sets the value for an item in the list. The list is expanded if
necessary.
index - the index (zero-based).b - the boolean.