Package com.microstrategy.utils
Class DAG.Edge
- java.lang.Object
-
- com.microstrategy.utils.DAG.AnnotatableObject
-
- com.microstrategy.utils.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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DAG.Vertex
getFromVertex()
Returns the "from" vertex.DAG.Vertex
getToVertex()
Returns the "to" vertex.-
Methods inherited from class com.microstrategy.utils.DAG.AnnotatableObject
getProperty, setProperty
-
-
-
-
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.
-
-