Interface DestinationMap<N,E>

Type Parameters:
N - the type of nodes in the graph
E - the type of directed edges used by the graph
All Known Implementing Classes:
MovePathDestinationMap

public interface DestinationMap<N,E>
Represents a function for retrieving destination node of an edge.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a destination node of a given edge.
  • Method Details

    • getDestination

      N getDestination(E e)
      Returns a destination node of a given edge.
      Parameters:
      e - a directed edge
      Returns:
      the destination node of the given edge