Package weka.knowledgeflow.steps
Annotation Interface KFStep
KFStep class annotation
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionThe top-level folder in the JTree that this step should appear inPath (as a resource on the classpath) to the icon for this stepThe name of this stepMouse-over tool tip for this step (appears when the mouse hovers over the entry in the JTree) -
Optional Element Summary
Modifier and TypeOptional ElementDescriptionboolean
True if this processing step is resource intensive (cpu or memory).
-
Element Details
-
name
String nameThe name of this step- Returns:
- the name of the step
-
category
String categoryThe top-level folder in the JTree that this step should appear in- Returns:
- the name of the top-level folder that this step should appear in
-
toolTipText
String toolTipTextMouse-over tool tip for this step (appears when the mouse hovers over the entry in the JTree)- Returns:
- the tool tip text for this step
-
iconPath
String iconPathPath (as a resource on the classpath) to the icon for this step- Returns:
- the path to the icon for this step
-
-
-
resourceIntensive
boolean resourceIntensiveTrue if this processing step is resource intensive (cpu or memory). BaseExecution environment will use the limited number of worker thread executor service to execute this step in this case.- Returns:
- true if this step is CPU-intensive
- Default:
- false
-