java.lang.Object | |
↳ | org.jfree.data.KeyedObject |
A (key, object) pair.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new (key, object) pair.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a clone of this object.
| |||||||||||
Tests if this object is equal to another.
| |||||||||||
Returns the key.
| |||||||||||
Returns the object.
| |||||||||||
Sets the object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Creates a new (key, object) pair.
key | the key. |
---|---|
object | the object (null permitted).
|
Returns a clone of this object. It is assumed that the key is an immutable object, so it is not deep-cloned. The object is deep-cloned if it implements PublicCloneable, otherwise a shallow clone is made.
CloneNotSupportedException | if there is a problem cloning. |
---|
Tests if this object is equal to another.
obj | the other object. |
---|
Sets the object.
object | the object (null permitted).
|
---|