Package adams.data.weka.columnfinder
Class AbstractColumnFinderWithCapabilities
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.weka.columnfinder.AbstractColumnFinder
-
- adams.data.weka.columnfinder.AbstractColumnFinderWithCapabilities
-
- All Implemented Interfaces:
adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.ShallowCopySupporter<ColumnFinder>,adams.core.SizeOfHandler,ColumnFinder,Serializable,weka.core.CapabilitiesHandler
public abstract class AbstractColumnFinderWithCapabilities extends AbstractColumnFinder implements weka.core.CapabilitiesHandler
Ancestor for classes that find columns 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 AbstractColumnFinderWithCapabilities()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidcheck(weka.core.Instances data)Checks the data.abstract weka.core.CapabilitiesgetCapabilities()Returns the capabilities of this object.-
Methods inherited from class adams.data.weka.columnfinder.AbstractColumnFinder
arrayToHashSet, compareTo, doFindColumns, equals, findColumns, forCommandLine, forName, getColumnFinders, 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:
getCapabilitiesin 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:
checkin classAbstractColumnFinder- Parameters:
data- the data to check
-
-