net.sf.javagimmicks.graph.ValuedEdge 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 special version of {@link Edge} that can carry additional information
* (simply called "value").
*
* @param
* the type of values that this {@link ValuedEdge} can carry
*/
public interface ValuedEdge> extends Edge
{
/**
* Returns the value of this {@link ValuedEdge}.
*
* @return the value of this {@link ValuedEdge}
*/
public ValueType getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy