zombie.core.utils
Class FibonacciHeap.Entry<T>

java.lang.Object
  extended by zombie.core.utils.FibonacciHeap.Entry<T>
Enclosing class:
FibonacciHeap<T>

public static final class FibonacciHeap.Entry<T>
extends java.lang.Object


Method Summary
 double getPriority()
          Returns the priority of this element.
 T getValue()
          Returns the element represented by this heap entry.
 void setValue(T value)
          Sets the element associated with this heap entry.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getValue

public T getValue()
Returns the element represented by this heap entry.

Returns:
The element represented by this heap entry.

setValue

public void setValue(T value)
Sets the element associated with this heap entry.

Parameters:
value - The element to associate with this heap entry.

getPriority

public double getPriority()
Returns the priority of this element.

Returns:
The priority of this element.