Class DAG.Edge

  • Enclosing class:
    DAG

    public static class DAG.Edge
    extends DAG.AnnotatableObject
    This class represents an Edge in the Directed Acyclic Graph. Once created, the caller cannot modify the end points (vertices) of the edge. As it is an "annotatable" object, callers may add properties to an Edge.
    Since:
    MicroStrategy Web 9.0.0
    See Also:
    DAG.AnnotatableObject
    • Method Detail

      • getFromVertex

        public DAG.Vertex getFromVertex()
        Returns the "from" vertex.
        Returns:
        The "from" Vertex.
      • getToVertex

        public DAG.Vertex getToVertex()
        Returns the "to" vertex.
        Returns:
        The "to" Vertex.