Class TransformingGraphView.Builder<V,​W,​E,​F,​T extends TransformingGraphView<V,​W,​E,​F>,​B extends TransformingGraphView.Builder<V,​W,​E,​F,​T,​B>>

  • Type Parameters:
    V - incoming vertex type
    W - outgoing vertex type
    E - incoming edge type
    F - outgoing edge type
    T - the TransformingGraphView type
    B - the Builder type
    Enclosing class:
    TransformingGraphView<V,​W,​E,​F>

    public static class TransformingGraphView.Builder<V,​W,​E,​F,​T extends TransformingGraphView<V,​W,​E,​F>,​B extends TransformingGraphView.Builder<V,​W,​E,​F,​T,​B>>
    extends Object
    builds the TransformGraphView instance with supplied Functions
    • Method Detail

      • self

        protected B self()
      • vertexTransformFunction

        public B vertexTransformFunction​(Function<V,​W> vertexTransformFunction)
        Parameters:
        vertexTransformFunction - Function to apply to vertices
        Returns:
        this Builder
      • edgeTransformFunction

        public B edgeTransformFunction​(Function<E,​F> edgeTransformFunction)
        Parameters:
        edgeTransformFunction - Function to apply to edges
        Returns:
        this Builder
      • build

        public T build()