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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<V>
getNeighbours(V v)
R
getRepresentation(V v)
V
getValue(R r)
List<V>
getValues()
-