Package com.sun.speech.freetts
Class PartOfSpeechImpl
java.lang.Object
com.sun.speech.freetts.PartOfSpeechImpl
- All Implemented Interfaces:
PartOfSpeech
Implementation of a
PartOfSpeech that reads the info
from a file. The format of the file is as follows:
word pos word pos word pos ...Where
word is the word and pos is the
part of speech for the word. The part of speech is implementation
dependent.-
Constructor Summary
ConstructorsConstructorDescriptionPartOfSpeechImpl(URL url, String defaultPartOfSpeech) Creates a new PartOfSpeechImpl by reading from the given URL. -
Method Summary
Modifier and TypeMethodDescriptiongetPartOfSpeech(String word) Returns a description of the part of speech given a word.
-
Constructor Details
-
PartOfSpeechImpl
Creates a new PartOfSpeechImpl by reading from the given URL.- Parameters:
url- the input sourcedefaultPartOfSpeech- the default part of speech- Throws:
IOException- if an error occurs
-
-
Method Details
-
getPartOfSpeech
Returns a description of the part of speech given a word. If the given word cannot be found, the part of speech will be thedefaultPartOfSpeechparameter passed to the constructor.- Specified by:
getPartOfSpeechin interfacePartOfSpeech- Parameters:
word- the word to classify- Returns:
- an implementation dependent part of speech for the word
-