Class Edge<T>


  • public class Edge<T>
    extends Pair<T,​T>
    Edge of the DAG
    Author:
    dmitry.neverov
    • Constructor Detail

      • Edge

        public Edge​(@NotNull
                    T from,
                    @Nullable
                    T to)
    • Method Detail

      • createEdge

        public static <T> Edge<T> createEdge​(@NotNull
                                             T from,
                                             @Nullable
                                             T to)
      • from

        @NotNull
        public T from()
      • to

        @Nullable
        public T to()