Package com.tonic.analysis.graph.export
Class DOTExporterConfig.EdgeStyle
- java.lang.Object
-
- com.tonic.analysis.graph.export.DOTExporterConfig.EdgeStyle
-
- Enclosing class:
- DOTExporterConfig
public static class DOTExporterConfig.EdgeStyle extends Object
Colour, line style and arrow head applied to a DOT edge.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDOTExporterConfig.EdgeStyle.BuilderMutable accumulator for an edge style.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DOTExporterConfig.EdgeStyle.Builderbuilder()static DOTExporterConfig.EdgeStyledefaults()StringgetArrowHead()StringgetColor()StringgetStyle()
-
-
-
Method Detail
-
getColor
public String getColor()
- Returns:
- the color
-
getStyle
public String getStyle()
- Returns:
- the style
-
getArrowHead
public String getArrowHead()
- Returns:
- the arrow head
-
defaults
public static DOTExporterConfig.EdgeStyle defaults()
- Returns:
- a solid black edge with a normal arrow head
-
builder
public static DOTExporterConfig.EdgeStyle.Builder builder()
- Returns:
- a new builder seeded with the default edge style
-
-