Package adams.data.weka.rowfinder
Class AbstractRowFinderWithCapabilities
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.weka.rowfinder.AbstractRowFinder
-
- adams.data.weka.rowfinder.AbstractRowFinderWithCapabilities
-
- All Implemented Interfaces:
adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.ShallowCopySupporter<RowFinder>
,adams.core.SizeOfHandler
,RowFinder
,Serializable
,weka.core.CapabilitiesHandler
public abstract class AbstractRowFinderWithCapabilities extends AbstractRowFinder implements weka.core.CapabilitiesHandler
Ancestor for classes that find rows of interest in datasets.
Requires the data to meet the required capabilities.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractRowFinderWithCapabilities()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
check(weka.core.Instances data)
Checks the data.abstract weka.core.Capabilities
getCapabilities()
Returns the capabilities of this object.-
Methods inherited from class adams.data.weka.rowfinder.AbstractRowFinder
arrayToHashSet, compareTo, doFindRows, equals, findRows, forCommandLine, forName, getRowFinders, shallowCopy, shallowCopy
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, defineOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Method Detail
-
getCapabilities
public abstract weka.core.Capabilities getCapabilities()
Returns the capabilities of this object.- Specified by:
getCapabilities
in interfaceweka.core.CapabilitiesHandler
- Returns:
- the capabilities of this object
- See Also:
Capabilities
-
check
protected void check(weka.core.Instances data)
Checks the data.
Checks the data against the capabilities.- Overrides:
check
in classAbstractRowFinder
- Parameters:
data
- the data to check
-
-