ch.hsr.adv.commons.graph.logic.domain.ADVEdge Maven / Gradle / Ivy
package ch.hsr.adv.commons.graph.logic.domain;
import ch.hsr.adv.commons.core.logic.domain.ADVRelation;
/**
* An edge always has an end and a start vertex. It can be directed or
* undirected.
*
* @param type of the edge value
*/
public interface ADVEdge extends ADVRelation {
/**
* @return true if the source and target element is identical
*/
boolean isSelfReference();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy