Package com.sun.speech.freetts.en.us
Class FeatureProcessors.Gpos
- java.lang.Object
-
- com.sun.speech.freetts.en.us.FeatureProcessors.Gpos
-
- All Implemented Interfaces:
FeatureProcessor
- Enclosing class:
- FeatureProcessors
public static class FeatureProcessors.Gpos extends java.lang.Object implements FeatureProcessor
Returns a guess of the part-of-speech. This is a feature processor. A feature processor takes an item, performs some sort of processing on the item and returns an object.
-
-
Constructor Summary
Constructors Constructor Description Gpos(PartOfSpeech pos)
Creates a GPOS with the given part-of-speech table
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
process(Item item)
Performs some processing on the given item.
-
-
-
Constructor Detail
-
Gpos
public Gpos(PartOfSpeech pos)
Creates a GPOS with the given part-of-speech table- Parameters:
pos
- part of speech determiner
-
-
Method Detail
-
process
public java.lang.String process(Item item) throws ProcessException
Performs some processing on the given item.- Specified by:
process
in interfaceFeatureProcessor
- Parameters:
item
- the item to process- Returns:
- a guess at the part-of-speech for the item
- Throws:
ProcessException
- if an exception occurred during the processing
-
-