Package elki.result
Class ExportVisualizations.Par
- java.lang.Object
-
- elki.result.ExportVisualizations.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- ExportVisualizations
public static class ExportVisualizations.Par extends java.lang.Object implements Parameterizer
Parameterization class- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static OptionID
FOLDER_ID
Parameter to specify the output folder(package private) ExportVisualizations.Format
format
Output file format.static OptionID
FORMAT_ID
Parameter to specify the output format(package private) int
iwidth
Width of pixel output formats.static OptionID
IWIDTH_ID
Parameter to specify the image width of pixel formats(package private) VisualizerParameterizer
manager
Visualization manager.(package private) java.nio.file.Path
output
Output folder(package private) double
ratio
Ratio for canvasstatic OptionID
RATIO_ID
Parameter to specify the canvas ratio
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(Parameterization config)
Configure the class.ExportVisualizations
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
RATIO_ID
public static final OptionID RATIO_ID
Parameter to specify the canvas ratio
-
FOLDER_ID
public static final OptionID FOLDER_ID
Parameter to specify the output folder
-
FORMAT_ID
public static final OptionID FORMAT_ID
Parameter to specify the output format
-
IWIDTH_ID
public static final OptionID IWIDTH_ID
Parameter to specify the image width of pixel formats
-
manager
VisualizerParameterizer manager
Visualization manager.
-
output
java.nio.file.Path output
Output folder
-
ratio
double ratio
Ratio for canvas
-
format
ExportVisualizations.Format format
Output file format.
-
iwidth
int iwidth
Width of pixel output formats.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:Parameterizer
Configure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configure
in interfaceParameterizer
- Parameters:
config
- Parameterization
-
make
public ExportVisualizations make()
Description copied from interface:Parameterizer
Make an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Object
as return type.- Specified by:
make
in interfaceParameterizer
- Returns:
- a new instance
-
-