Uses of Record Class
org.variantsync.diffdetective.variation.diff.render.RenderOptions
Package
Description
-
Uses of RenderOptions in org.variantsync.diffdetective.examplesearch
Modifier and TypeFieldDescriptionstatic final RenderOptions<DiffLinesLabel>
ExampleFinder.ExportOptions
Default render options for exporting example candidates. -
Uses of RenderOptions in org.variantsync.diffdetective.internal
Modifier and TypeFieldDescriptionprivate static final RenderOptions<DiffLinesLabel>
SimpleRenderer.RENDER_OPTIONS_TO_USE
private static final RenderOptions<DiffLinesLabel>
SimpleRenderer.renderCompositePatterns
private static final RenderOptions<DiffLinesLabel>
SimpleRenderer.renderExampleOptions
private static final RenderOptions<DiffLinesLabel>
SimpleRenderer.renderOptions
private static final RenderOptions<DiffLinesLabel>
SimpleRenderer.vulkanRenderOptions
-
Uses of RenderOptions in org.variantsync.diffdetective.mining.postprocessing
Modifier and TypeFieldDescriptionstatic final RenderOptions<DiffLinesLabel>
MiningPostprocessing.DefaultRenderOptions
Modifier and TypeMethodDescriptionstatic void
MiningPostprocessing.postprocessAndInterpretResults
(List<VariationDiff<DiffLinesLabel>> frequentSubgraphs, Postprocessor<DiffLinesLabel> postprocessor, Consumer<String> printer, VariationDiffRenderer renderer, RenderOptions<? super DiffLinesLabel> renderOptions, Path outputDir) -
Uses of RenderOptions in org.variantsync.diffdetective.variation.diff.render
Modifier and TypeFieldDescriptionstatic final RenderOptions<DiffLinesLabel>
PatchDiffRenderer.ErrorVariationDiffRenderOptions
Default RenderOptions for debug rendering of VariationDiffs relevant to the occurrence of an error.private final RenderOptions<? super DiffLinesLabel>
PatchDiffRenderer.options
Modifier and TypeMethodDescriptionRenderOptions.Builder.build()
Complete the creation ofRenderOptions
.static <L extends Label>
RenderOptions<L>RenderOptions.DEFAULT()
Default options.Modifier and TypeMethodDescriptionboolean
VariationDiffRenderer.render
(PatchDiff patchDiff, Path directory, RenderOptions<? super DiffLinesLabel> options) InvokesVariationDiffRenderer.render(VariationDiff, GitPatch, Path, RenderOptions)
by extracting the given patchDiff's VariationDiff.boolean
VariationDiffRenderer.render
(PatchDiff patchDiff, Path directory, RenderOptions<? super DiffLinesLabel> options, LineGraphExportOptions<? super DiffLinesLabel> exportOptions) InvokesVariationDiffRenderer.render(VariationDiff, GitPatch, Path, RenderOptions, LineGraphExportOptions)
by extracting the given patchDiff's VariationDiff.<L extends Label>
booleanVariationDiffRenderer.render
(VariationDiff<? extends L> tree, String treeAndFileName, Path directory, RenderOptions<? super L> options) <L extends Label>
booleanVariationDiffRenderer.render
(VariationDiff<? extends L> tree, String treeAndFileName, Path directory, RenderOptions<? super L> options, LineGraphExportOptions<? super L> exportOptions) InvokesVariationDiffRenderer.render(VariationDiff, String, Path, RenderOptions, LineGraphExportOptions, BiFunction)
with the a default tree header factory.private <L extends Label>
booleanVariationDiffRenderer.render
(VariationDiff<? extends L> tree, String treeAndFileName, Path directory, RenderOptions<? super L> options, LineGraphExportOptions<? super L> exportOptions, BiFunction<String, VariationDiffSource, String> treeHeader) Renders the given VariationDiff to an image file.<L extends Label>
booleanVariationDiffRenderer.render
(VariationDiff<L> tree, GitPatch patch, Path directory, RenderOptions<? super L> options) <L extends Label>
booleanVariationDiffRenderer.render
(VariationDiff<L> tree, GitPatch patch, Path directory, RenderOptions<? super L> options, LineGraphExportOptions<? super L> exportOptions) InvokesVariationDiffRenderer.render(VariationDiff, String, Path, RenderOptions, LineGraphExportOptions)
by creating a name for the tree and its produced image file.<L extends Label>
booleanVariationDiffRenderer.renderFile
(Path lineGraphFile, RenderOptions<? super L> options) Renders the given linegraph file with the given options.<L extends Label>
booleanVariationDiffRenderer.renderWithTreeFormat
(VariationDiff<? extends L> tree, String treeAndFileName, Path directory, RenderOptions<? super L> options) InvokesVariationDiffRenderer.render(VariationDiff, String, Path, RenderOptions, LineGraphExportOptions, BiFunction)
with the a default tree header factory.ModifierConstructorDescriptionPatchDiffRenderer
(VariationDiffRenderer renderer, RenderOptions<? super DiffLinesLabel> options) Creates a PatchDiffRenderer wrapping the given renderer and rendering patches with the given options.