All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.javagimmicks.graph.Edge Maven / Gradle / Ivy

package net.sf.javagimmicks.graph;

import java.util.Collection;

public interface Edge>
{
   public boolean connectsTo(V vertex);
   public Collection getVerteces();
   public V getOutgoingVertex(V incoming);
   
   public Graph getGraph();
   
   public String toString(V incoming); 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy