|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jfree.data.general.AbstractDataset
org.jfree.data.general.DefaultPieDataset
A default implementation of the PieDataset
interface.
Constructor Summary | |
DefaultPieDataset()
Constructs a new dataset, initially empty. |
|
DefaultPieDataset(KeyedValues data)
Creates a new dataset by copying data from a KeyedValues
instance. |
Method Summary | |
java.lang.Object |
clone()
Returns a clone of the dataset. |
boolean |
equals(java.lang.Object obj)
Tests if this object is equal to another. |
int |
getIndex(java.lang.Comparable key)
Returns the index for a key. |
int |
getItemCount()
Returns the number of items in the dataset. |
java.lang.Comparable |
getKey(int item)
Returns the key for an item. |
java.util.List |
getKeys()
Returns the categories in the dataset. |
java.lang.Number |
getValue(java.lang.Comparable key)
Returns the data value associated with a key. |
java.lang.Number |
getValue(int item)
Returns a value. |
int |
hashCode()
Returns a hash code. |
void |
setValue(java.lang.Comparable key,
double value)
Sets the data value for a key. |
void |
setValue(java.lang.Comparable key,
java.lang.Number value)
Sets the data value for a key. |
Methods inherited from class org.jfree.data.general.AbstractDataset |
addChangeListener, fireDatasetChanged, getGroup, notifyListeners, removeChangeListener, setGroup, validateObject |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.jfree.data.general.Dataset |
addChangeListener, getGroup, removeChangeListener, setGroup |
Constructor Detail |
public DefaultPieDataset()
public DefaultPieDataset(KeyedValues data)
KeyedValues
instance.
data
- the data (null
not permitted).Method Detail |
public int getItemCount()
getItemCount
in interface Values
public java.util.List getKeys()
getKeys
in interface KeyedValues
public java.lang.Comparable getKey(int item)
getKey
in interface KeyedValues
item
- the item index (zero-based).
public int getIndex(java.lang.Comparable key)
getIndex
in interface KeyedValues
key
- the key.
-1
if the key is unrecognised.public java.lang.Number getValue(int item)
getValue
in interface Values
item
- the value index.
null
).public java.lang.Number getValue(java.lang.Comparable key)
getValue
in interface KeyedValues
key
- the key (null
not permitted).
null
).
UnknownKeyException
- if the key is not recognised.public void setValue(java.lang.Comparable key, java.lang.Number value)
key
- the key.value
- the value.public void setValue(java.lang.Comparable key, double value)
key
- the key.value
- the value.public boolean equals(java.lang.Object obj)
obj
- the other object.
public int hashCode()
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in class AbstractDataset
java.lang.CloneNotSupportedException
- This class will not throw this
exception, but subclasses (if any) might.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |