Package weka.core.tokenizers
Class AlphabeticTokenizer
java.lang.Object
weka.core.tokenizers.Tokenizer
weka.core.tokenizers.AlphabeticTokenizer
- All Implemented Interfaces:
Serializable
,Enumeration<String>
,OptionHandler
,RevisionHandler
Alphabetic string tokenizer, tokens are to be
formed only from contiguous alphabetic sequences.
- Version:
- $Revision: 10203 $
- Author:
- Asrhaf M. Kibriya (amk14@cs.waikato.ac.nz), FracPete (fracpete at waikato dot ac dot nz)
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the revision string.Returns a string describing the stemmerboolean
returns whether there are more elements stillstatic void
Runs the tokenizer with the given options and strings to tokenize.returns the next elementvoid
Sets the string to tokenize.Methods inherited from class weka.core.tokenizers.Tokenizer
getOptions, listOptions, runTokenizer, setOptions, tokenize
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Enumeration
asIterator
-
Constructor Details
-
AlphabeticTokenizer
public AlphabeticTokenizer()
-
-
Method Details
-
globalInfo
Returns a string describing the stemmer- Specified by:
globalInfo
in classTokenizer
- Returns:
- a description suitable for displaying in the explorer/experimenter gui
-
hasMoreElements
public boolean hasMoreElements()returns whether there are more elements still- Specified by:
hasMoreElements
in interfaceEnumeration<String>
- Specified by:
hasMoreElements
in classTokenizer
- Returns:
- true if there are still more elements
-
nextElement
returns the next element- Specified by:
nextElement
in interfaceEnumeration<String>
- Specified by:
nextElement
in classTokenizer
- Returns:
- the next element
-
tokenize
Sets the string to tokenize. Tokenization happens immediately. -
getRevision
Returns the revision string.- Returns:
- the revision
-
main
Runs the tokenizer with the given options and strings to tokenize. The tokens are printed to stdout.- Parameters:
args
- the commandline options and strings to tokenize
-