-
- Type Parameters:
N- the type parameter
- All Known Implementing Classes:
RenderGraphStrategy.DefaultStrategy,RenderGraphStrategy.NetworkStrategy,RenderGraphStrategy.ValueStrategy
public interface RenderGraphStrategy<N>The interface Render graph strategy.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRenderGraphStrategy.DefaultStrategy<N>The type Render graph default strategy.static classRenderGraphStrategy.NetworkStrategy<N,E>The type Render graph network strategy.static classRenderGraphStrategy.ValueStrategy<N,V>The type Render graph value strategy.
-
Method Summary
Modifier and Type Method Description booleanisDirected()Is directed boolean.java.lang.StringrenderToString(@NonNull java.util.Map<N,java.lang.String> markNodes, @NonNull java.util.Map<com.google.common.graph.EndpointPair<N>,java.lang.String> markEdges)Render to string string.
-
-
-
Method Detail
-
isDirected
boolean isDirected()
Is directed boolean.- Returns:
- the boolean
-
renderToString
java.lang.String renderToString(@NonNull @NonNull java.util.Map<N,java.lang.String> markNodes, @NonNull @NonNull java.util.Map<com.google.common.graph.EndpointPair<N>,java.lang.String> markEdges)Render to string string.- Parameters:
markNodes- the mark nodesmarkEdges- the mark edges- Returns:
- the string
-
-