Interface AbstractEdgeTerminus

Base class for objects in a Graph that can act as the terminus for an Edge.

interface AbstractEdgeTerminus {
    getAllEdges(): Edge[];
    getSourceEdges(): Edge[];
    getTargetEdges(): Edge[];
}

Hierarchy

  • GraphObject
    • AbstractEdgeTerminus

Implemented by

Methods

  • Gets edges attached to this terminus where this terminus is the source or target

    Returns Edge[]

  • Gets edges attached to this terminus where this terminus is the source

    Returns Edge[]

  • Gets edges attached to this terminus where this terminus is the target

    Returns Edge[]

Version :