Package adams.core
Interface OptionalRandomizable
-
- All Superinterfaces:
Randomizable
- All Known Implementing Classes:
InstancesCrossValidationFoldGenerator
,InstancesGroupedCrossValidationFoldGenerator
,ManualSplitGenerator
public interface OptionalRandomizable extends Randomizable
Interface for classes that have support optional randomization.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getRandomize()
Returns whether to randomize.String
randomizeTipText()
Returns the tip text for this property.void
setRandomize(boolean value)
Sets whether to randomize.-
Methods inherited from interface adams.core.Randomizable
getSeed, seedTipText, setSeed
-
-
-
-
Method Detail
-
setRandomize
void setRandomize(boolean value)
Sets whether to randomize.- Parameters:
value
- true if to randomize
-
getRandomize
boolean getRandomize()
Returns whether to randomize.- Returns:
- true if to randomize
-
randomizeTipText
String randomizeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-