Class AbstractTreeLayoutAlgorithm.Builder<V,​T extends AbstractTreeLayoutAlgorithm<V>,​B extends AbstractTreeLayoutAlgorithm.Builder<V,​T,​B>>

    • Field Detail

      • rootPredicate

        protected Predicate<V> rootPredicate
      • rootComparator

        protected Comparator<V> rootComparator
      • horizontalVertexSpacing

        protected int horizontalVertexSpacing
      • verticalVertexSpacing

        protected int verticalVertexSpacing
      • expandLayout

        protected boolean expandLayout
      • correctOverlap

        protected boolean correctOverlap
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • rootPredicate

        public B rootPredicate​(Predicate<V> rootPredicate)
        Parameters:
        rootPredicate - the predicate function to determine root vertices. Default is to consider all vertices with no incoming edges as root vertices
        Returns:
        this Builder
      • rootComparator

        public B rootComparator​(Comparator<V> rootComparator)
        Parameters:
        rootComparator - used to sort the roots if an order is desired
        Returns:
        this Builder
      • horizontalVertexSpacing

        public B horizontalVertexSpacing​(int horizontalVertexSpacing)
        Parameters:
        horizontalVertexSpacing - horizontal spacing between tree elements
        Returns:
        this Builder
      • verticalVertexSpacing

        public B verticalVertexSpacing​(int verticalVertexSpacing)
        Parameters:
        verticalVertexSpacing - vertical spacing between tree elements
        Returns:
        this Builder
      • vertexBoundsFunction

        public B vertexBoundsFunction​(Function<V,​Rectangle> vertexBoundsFunction)
        if provided, the horizontal and vertical spacings will be replaced by the average width and height of the vertex Shapes returned by this Function
        Parameters:
        vertexBoundsFunction - source of vertex shapes
        Returns:
        this builder
      • expandLayout

        public B expandLayout​(boolean expandLayout)
        Parameters:
        expandLayout - if true expand the layout width and height to accomodate the entire tree
        Returns:
        the Builder
      • correctOverlap

        public B correctOverlap​(boolean correctOverlap)
        Parameters:
        correctOverlap - if true move vertices to correct overlap with non-incident edges.
        Returns:
        the Builder