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

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

There is a newer version: 0.99-alpha1
Show newest version
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