net.java.sen
クラス SenFactory

java.lang.Object
  上位を拡張 net.java.sen.SenFactory

public class SenFactory
extends java.lang.Object

A factory to manage creation of Viterbi, StringTagger, and ReadingProcessor objects

Thread Safety: This class and all its public methods are thread safe. The objects constructed by the factory are NOT thread safe and should not be accessed simultaneously by multiple threads


コンストラクタの概要
SenFactory()
           
 
メソッドの概要
static ReadingProcessor getReadingProcessor(java.lang.String configurationFilename)
          Creates a ReadingProcessor from the given configuration file
static StringTagger getStringTagger(java.lang.String configurationFilename)
          Creates a StringTagger from the given configuration file
static Viterbi getViterbi(java.lang.String configurationFilename)
          Creates a Viterbi from the given configuration file
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

SenFactory

public SenFactory()
メソッドの詳細

getViterbi

public static Viterbi getViterbi(java.lang.String configurationFilename)
Creates a Viterbi from the given configuration file

パラメータ:
configurationFilename - The configuration file
戻り値:
A Viterbi created from the configuration file

getStringTagger

public static StringTagger getStringTagger(java.lang.String configurationFilename)
Creates a StringTagger from the given configuration file

パラメータ:
configurationFilename - The configuration file
戻り値:
A StringTagger created from the configuration file

getReadingProcessor

public static ReadingProcessor getReadingProcessor(java.lang.String configurationFilename)
Creates a ReadingProcessor from the given configuration file

パラメータ:
configurationFilename - The configuration file
戻り値:
A StringTagger created from the configuration file


Copyright ? 2008. All Rights Reserved.