edu.emory.mathcs.backport.java.util
public static class TreeMap.Entry extends Object implements Entry, Cloneable, Serializable
| Constructor Summary | |
|---|---|
| Entry(Object key, Object element)
Make a new node with given element, null links, and BLACK color.
| |
| Method Summary | |
|---|---|
| protected Object | clone()
Return a new Entry with same element and color as self,
but with null links. |
| boolean | equals(Object o) |
| Object | getKey() |
| Object | getValue()
return the element value |
| int | hashCode() |
| Object | setValue(Object v)
set the element value |
| String | toString() |