Package weka.core.stopwords
Class AbstractFileBasedStopwords
- java.lang.Object
-
- weka.core.stopwords.AbstractStopwords
-
- weka.core.stopwords.AbstractFileBasedStopwords
-
- All Implemented Interfaces:
java.io.Serializable,OptionHandler,StopwordsHandler
- Direct Known Subclasses:
RegExpFromFile,WordsFromFile
public abstract class AbstractFileBasedStopwords extends AbstractStopwords
Ancestor for file-based stopword schemes.- Version:
- $Revision: 10982 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractFileBasedStopwords()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.lang.String[]getOptions()Gets the current settings of the Classifier.java.io.FilegetStopwords()returns the file used for obtaining the stopwords, if the file represents a directory then the default ones are used.java.util.Enumeration<Option>listOptions()Returns an enumeration describing the available options.voidsetOptions(java.lang.String[] options)Parses a given list of options.voidsetStopwords(java.io.File value)Sets the file containing the stopwords, null or a directory unset the stopwords.abstract java.lang.StringstopwordsTipText()Returns the tip text for this property.-
Methods inherited from class weka.core.stopwords.AbstractStopwords
debugTipText, getDebug, globalInfo, isStopword, setDebug
-
-
-
-
Method Detail
-
listOptions
public java.util.Enumeration<Option> listOptions()
Returns an enumeration describing the available options.- Specified by:
listOptionsin interfaceOptionHandler- Overrides:
listOptionsin classAbstractStopwords- 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.- Specified by:
setOptionsin interfaceOptionHandler- Overrides:
setOptionsin classAbstractStopwords- 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 Classifier.- Specified by:
getOptionsin interfaceOptionHandler- Overrides:
getOptionsin classAbstractStopwords- Returns:
- an array of strings suitable for passing to setOptions
-
setStopwords
public void setStopwords(java.io.File value)
Sets the file containing the stopwords, null or a directory unset the stopwords.- Parameters:
value- the file containing the stopwords
-
getStopwords
public java.io.File getStopwords()
returns the file used for obtaining the stopwords, if the file represents a directory then the default ones are used.- Returns:
- the file containing the stopwords
-
stopwordsTipText
public abstract java.lang.String stopwordsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
-