Package elki.result
Class AutomaticVisualization.Par
- java.lang.Object
-
- elki.result.AutomaticVisualization.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- AutomaticVisualization
public static class AutomaticVisualization.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) VisualizerParameterizer
manager
Visualization manager.(package private) boolean
single
Single view mode.static OptionID
SINGLE_ID
Flag to set single display(package private) java.lang.String
title
Stores the set title.static OptionID
WINDOW_TITLE_ID
Parameter to specify the window title
-
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.AutomaticVisualization
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
WINDOW_TITLE_ID
public static final OptionID WINDOW_TITLE_ID
Parameter to specify the window title
-
SINGLE_ID
public static final OptionID SINGLE_ID
Flag to set single display
-
title
java.lang.String title
Stores the set title.
-
manager
VisualizerParameterizer manager
Visualization manager.
-
single
boolean single
Single view mode.
-
-
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 AutomaticVisualization 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
-
-