Class ArticulatedEdge<V,​E>


  • public class ArticulatedEdge<V,​E>
    extends Object
    • Field Detail

      • edge

        protected E edge
      • source

        protected V source
      • target

        protected V target
      • intermediateVertices

        protected final List<V> intermediateVertices
      • intermediatePoints

        protected final List<Point> intermediatePoints
    • Constructor Detail

      • ArticulatedEdge

        protected ArticulatedEdge​(E edge,
                                  V source,
                                  V target)
    • Method Detail

      • of

        public static <V,​E> ArticulatedEdge of​(E edge,
                                                     V source,
                                                     V target)
      • getEdge

        public E getEdge()
      • getSource

        public V getSource()
      • getTarget

        public V getTarget()
      • getIntermediatePoints

        public List<Point> getIntermediatePoints()
      • addIntermediateVertex

        public void addIntermediateVertex​(V v)
      • addIntermediatePoint

        public void addIntermediatePoint​(Point p)
      • getIntermediateVertices

        public List<V> getIntermediateVertices()
      • reversed

        public ArticulatedEdge<V,​E> reversed()
        reverse the direction and endpoints of this edge Done for reverting a feedback edge into its original form
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object