Class NetworkSimplex.Builder<V,E,T extends NetworkSimplex<V,E>,B extends NetworkSimplex.Builder<V,E,T,B>>
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.util.NetworkSimplex.Builder<V,E,T,B>
-
- Enclosing class:
- NetworkSimplex<V,E>
public static class NetworkSimplex.Builder<V,E,T extends NetworkSimplex<V,E>,B extends NetworkSimplex.Builder<V,E,T,B>> extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
build()
protected B
self()
B
separationFunction(Function<LE<V,E>,Integer> separationFunction)
B
weightFunction(Function<LE<V,E>,Integer> weightFunction)
-
-
-
Method Detail
-
self
protected B self()
- Returns:
- this builder cast to type B
-
weightFunction
public B weightFunction(Function<LE<V,E>,Integer> weightFunction)
- Parameters:
weightFunction
-- Returns:
- this Builder
-
separationFunction
public B separationFunction(Function<LE<V,E>,Integer> separationFunction)
- Parameters:
separationFunction
-- Returns:
- this Builder
-
build
public T build()
- Returns:
- the Builder with its set parameters
-
-