Interface GraphDefiner<V,R>

All Known Implementing Classes:
PersistentClassGraphDefiner

public interface GraphDefiner<V,R>
Defines a graph, where each vertex has a representation, which identifies uniquely a value. Representations are comparable, values - not.
  • Method Details

    • getRepresentation

      R getRepresentation(V v)
    • getValue

      V getValue(R r)
    • getNeighbours

      List<V> getNeighbours(V v)
    • getValues

      List<V> getValues()