Package weka.associations
Class SingleAssociatorEnhancer
- java.lang.Object
-
- weka.associations.AbstractAssociator
-
- weka.associations.SingleAssociatorEnhancer
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,Associator,CapabilitiesHandler,OptionHandler,RevisionHandler
- Direct Known Subclasses:
FilteredAssociator
public abstract class SingleAssociatorEnhancer extends AbstractAssociator implements OptionHandler
Abstract utility class for handling settings common to meta associators that use a single base associator.- Version:
- $Revision: 5504 $
- Author:
- Eibe Frank (eibe@cs.waikato.ac.nz), FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SingleAssociatorEnhancer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringassociatorTipText()Returns the tip text for this propertyAssociatorgetAssociator()Get the associator used as the base associator.CapabilitiesgetCapabilities()Returns default capabilities of the base associator.java.lang.String[]getOptions()Gets the current settings of the associator.java.util.EnumerationlistOptions()Returns an enumeration describing the available options.voidsetAssociator(Associator value)Set the base associator.voidsetOptions(java.lang.String[] options)Parses a given list of options.-
Methods inherited from class weka.associations.AbstractAssociator
forName, getRevision, makeCopies, makeCopy
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface weka.associations.Associator
buildAssociations
-
-
-
-
Method Detail
-
listOptions
public java.util.Enumeration listOptions()
Returns an enumeration describing the available options.- Specified by:
listOptionsin interfaceOptionHandler- Returns:
- an enumeration of all the available options.
-
setOptions
public void setOptions(java.lang.String[] options) throws java.lang.ExceptionParses a given list of options. Valid options are:-W classname
Specify the full class name of the base associator.Options after -- are passed to the designated associator.
- Specified by:
setOptionsin interfaceOptionHandler- Parameters:
options- the list of options as an array of strings- Throws:
java.lang.Exception- if an option is not supported
-
getOptions
public java.lang.String[] getOptions()
Gets the current settings of the associator.- Specified by:
getOptionsin interfaceOptionHandler- Returns:
- an array of strings suitable for passing to setOptions
-
associatorTipText
public java.lang.String associatorTipText()
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setAssociator
public void setAssociator(Associator value)
Set the base associator.- Parameters:
value- the associator to use.
-
getAssociator
public Associator getAssociator()
Get the associator used as the base associator.- Returns:
- the currently used associator
-
getCapabilities
public Capabilities getCapabilities()
Returns default capabilities of the base associator.- Specified by:
getCapabilitiesin interfaceAssociator- Specified by:
getCapabilitiesin interfaceCapabilitiesHandler- Overrides:
getCapabilitiesin classAbstractAssociator- Returns:
- the capabilities of the base associator
- See Also:
Capabilities
-
-