net.sf.javagimmicks.graph.DirectedEdge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.graph;
/**
* A directed version of {@link Edge} that has a well-defined
* {@link #getSourceVertex() source} side and {@link #getTargetVertex() target}
* side.
*/
public interface DirectedEdge> extends Edge
{
/**
* Returns the source vertex of this {@link DirectedEdge}.
*
* @return the source vertex of this {@link DirectedEdge}
*/
public VertexType getSourceVertex();
/**
* Returns the target vertex of this {@link DirectedEdge}.
*
* @return the target vertex of this {@link DirectedEdge}
*/
public VertexType getTargetVertex();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy