| |
|
| java.lang.Object org.jfree.util.AbstractObjectList org.jfree.util.BooleanList
Constructor Summary | |
public | BooleanList() Creates a new list. |
Method Summary | |
public boolean | equals(Object o) Tests the list for equality with another object (typically also a list).
Parameters: o - the other object. | public Boolean | getBoolean(int index) Returns a
Boolean from the list.
Parameters: index - the index (zero-based). | public int | hashCode() Returns a hash code value for the object. | public void | setBoolean(int index, Boolean b) Sets the value for an item in the list. |
BooleanList | public BooleanList()(Code) | | Creates a new list.
|
equals | public boolean equals(Object o)(Code) | | Tests the list for equality with another object (typically also a list).
Parameters: o - the other object. A boolean. |
getBoolean | public Boolean getBoolean(int index)(Code) | | Returns a
Boolean from the list.
Parameters: index - the index (zero-based). a Boolean from the list. |
hashCode | public int hashCode()(Code) | | Returns a hash code value for the object.
the hashcode |
setBoolean | public void setBoolean(int index, Boolean b)(Code) | | Sets the value for an item in the list. The list is expanded if
necessary.
Parameters: index - the index (zero-based). Parameters: b - the boolean. |
Fields inherited from org.jfree.util.AbstractObjectList | final public static int DEFAULT_INITIAL_CAPACITY(Code)(Java Doc)
|
|
|
|