Package com.tonic.analysis.graph.export
Class DOTExporterConfig.NodeStyle
- java.lang.Object
-
- com.tonic.analysis.graph.export.DOTExporterConfig.NodeStyle
-
- Enclosing class:
- DOTExporterConfig
public static class DOTExporterConfig.NodeStyle extends Object
Shape and colour attributes applied to a DOT node.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDOTExporterConfig.NodeStyle.BuilderMutable accumulator for a node style.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DOTExporterConfig.NodeStyle.Builderbuilder()static DOTExporterConfig.NodeStyledefaults()StringgetBorderColor()StringgetFillColor()StringgetShape()StringgetStyle()
-
-
-
Method Detail
-
getShape
public String getShape()
- Returns:
- the shape
-
getFillColor
public String getFillColor()
- Returns:
- the fill color
-
getBorderColor
public String getBorderColor()
- Returns:
- the border color
-
getStyle
public String getStyle()
- Returns:
- the style
-
defaults
public static DOTExporterConfig.NodeStyle defaults()
- Returns:
- a filled white box with a black border
-
builder
public static DOTExporterConfig.NodeStyle.Builder builder()
- Returns:
- a new builder seeded with the default node style
-
-