Record Class LineGraphExportOptions<L extends Label>

java.lang.Object
java.lang.Record
org.variantsync.diffdetective.variation.diff.serialize.LineGraphExportOptions<L>
Record Components:
graphFormat - GraphFormat
treeFormat - VariationDiffLabelFormat
nodeFormat - DiffNodeLabelFormat
edgeFormat - EdgeLabelFormat
onError - Callback that is invoked when an error occurs.

public record LineGraphExportOptions<L extends Label>(GraphFormat graphFormat, VariationDiffLabelFormat treeFormat, DiffNodeLabelFormat<? super L extends Label> nodeFormat, EdgeLabelFormat<? super L extends Label> edgeFormat, BiConsumer<PatchDiff,Exception> onError) extends Record
Options necessary for exporting a line graph. This records contains information for exporting a VariationDiff into a line graph, such as the graph format and tree and node layouts.
Author:
Paul Bittner