Uses of Record Class
org.variantsync.diffdetective.variation.diff.render.RenderOptions
Packages that use RenderOptions
Package
Description
-
Uses of RenderOptions in org.variantsync.diffdetective.examplesearch
Fields in org.variantsync.diffdetective.examplesearch declared as RenderOptionsModifier and TypeFieldDescriptionstatic final RenderOptions<DiffLinesLabel> ExampleFinder.ExportOptionsDefault render options for exporting example candidates. -
Uses of RenderOptions in org.variantsync.diffdetective.internal
Fields in org.variantsync.diffdetective.internal declared as RenderOptionsModifier and TypeFieldDescriptionprivate static final RenderOptions<DiffLinesLabel> SimpleRenderer.RENDER_OPTIONS_TO_USEprivate static final RenderOptions<DiffLinesLabel> SimpleRenderer.renderCompositePatternsprivate static final RenderOptions<DiffLinesLabel> SimpleRenderer.renderExampleOptionsprivate static final RenderOptions<DiffLinesLabel> SimpleRenderer.renderOptionsprivate static final RenderOptions<DiffLinesLabel> SimpleRenderer.vulkanRenderOptions -
Uses of RenderOptions in org.variantsync.diffdetective.mining.postprocessing
Fields in org.variantsync.diffdetective.mining.postprocessing declared as RenderOptionsModifier and TypeFieldDescriptionstatic final RenderOptions<DiffLinesLabel> MiningPostprocessing.DefaultRenderOptionsMethods in org.variantsync.diffdetective.mining.postprocessing with parameters of type RenderOptionsModifier and TypeMethodDescriptionstatic voidMiningPostprocessing.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
Fields in org.variantsync.diffdetective.variation.diff.render declared as RenderOptionsModifier and TypeFieldDescriptionstatic final RenderOptions<DiffLinesLabel> PatchDiffRenderer.ErrorVariationDiffRenderOptionsDefault RenderOptions for debug rendering of VariationDiffs relevant to the occurrence of an error.private final RenderOptions<? super DiffLinesLabel> PatchDiffRenderer.optionsMethods in org.variantsync.diffdetective.variation.diff.render that return RenderOptionsModifier and TypeMethodDescriptionRenderOptions.Builder.build()Complete the creation ofRenderOptions.static <L extends Label>
RenderOptions<L> RenderOptions.DEFAULT()Default options.Methods in org.variantsync.diffdetective.variation.diff.render with parameters of type RenderOptionsModifier and TypeMethodDescriptionbooleanVariationDiffRenderer.render(PatchDiff patchDiff, Path directory, RenderOptions<? super DiffLinesLabel> options) InvokesVariationDiffRenderer.render(VariationDiff, GitPatch, Path, RenderOptions)by extracting the given patchDiff's VariationDiff.booleanVariationDiffRenderer.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.Constructors in org.variantsync.diffdetective.variation.diff.render with parameters of type RenderOptionsModifierConstructorDescriptionPatchDiffRenderer(VariationDiffRenderer renderer, RenderOptions<? super DiffLinesLabel> options) Creates a PatchDiffRenderer wrapping the given renderer and rendering patches with the given options.