Package com.tangosol.util.fsm
Class Render
- java.lang.Object
-
- com.tangosol.util.fsm.Render
-
public class Render extends Object
Provides Render capabilities forFiniteStateMachine
s, in particular theirModel
s.- Since:
- Coherence 12.2.1
- Author:
- bko
-
-
Constructor Summary
Constructors Constructor Description Render()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <S extends Enum<S>>
StringasGraphViz(Model<S> model, boolean fVerbose)
Produces a GraphViz representation of a Model.
-
-
-
Method Detail
-
asGraphViz
public static <S extends Enum<S>> String asGraphViz(Model<S> model, boolean fVerbose)
Produces a GraphViz representation of a Model.- Type Parameters:
S
- the type of state of the FiniteStateMachine- Parameters:
model
- the Model to renderfVerbose
- if true, label transitions (this results in a larger graph)- Returns:
- a String representing a GraphViz model
-
-