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

cdc.graphs.EdgeTip Maven / Gradle / Ivy

The newest version!
package cdc.graphs;

/**
 * Enumeration of possible edge tips.
 *
 * @author Damien Carbonne
 */
public enum EdgeTip {
    /**
     * Tip designates the source node.
     */
    SOURCE,

    /**
     * Tip designate the target node.
     */
    TARGET;

    public EdgeTip opposite() {
        return this == SOURCE ? TARGET : SOURCE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy