Sautrela

Uses of Interface
edu.gtts.sautrela.wfsa.Alphabet

Packages that use Alphabet
edu.gtts.sautrela.wfsa Provides classes for Markov modeling
edu.gtts.sautrela.wfsa.models   
 

Uses of Alphabet in edu.gtts.sautrela.wfsa
 

Methods in edu.gtts.sautrela.wfsa that return Alphabet
 Alphabet<Y> WFSA.getAlphabet()
          Returns the alphabet of the Model.
 Alphabet WFSASet.getAlphabet()
           
 

Methods in edu.gtts.sautrela.wfsa with parameters of type Alphabet
 T Factory.getInstance(org.xml.sax.InputSource is, Alphabet alphabet)
          Creates a WFSA using a XML description found via an InputSource and an existing Alphabet.
 WFSA WFSA.Factory.getInstance(org.xml.sax.InputSource is, Alphabet alphabet)
          Creates a WFSA using a XML description found via an InputSource and an existing Alphabet.
static WFSA<State,Symbol,Transition<State,Symbol>> Util.newWFSAInstance(org.xml.sax.InputSource is, Alphabet<Symbol> alphabet)
          Instantiates a WFSA using a XML description found via an InputSource and using an existing Alphabet.
 

Uses of Alphabet in edu.gtts.sautrela.wfsa.models
 

Classes in edu.gtts.sautrela.wfsa.models that implement Alphabet
 class ContinuousAlphabet<Y extends Symbol>
           
 class DefaultAlphabet<Y extends Symbol>
           
 

Methods in edu.gtts.sautrela.wfsa.models that return Alphabet
 Alphabet<edu.gtts.sautrela.wfsa.models.CHMM.Symbol> CHMM.getAlphabet()
           
 Alphabet<Symbol> DefaultDWFSA.getAlphabet()
           
 Alphabet<HMM.Symbol> HMM.getAlphabet()
           
 Alphabet<KTLSS.Symbol> KTLSS.getAlphabet()
           
 Alphabet<Symbol> LMM.getAlphabet()
           
 Alphabet<Symbol> TreeModel.getAlphabet()
           
 

Methods in edu.gtts.sautrela.wfsa.models with parameters of type Alphabet
static DefaultDWFSA DefaultDWFSA.newFromTranscription(java.lang.String name, java.lang.String[] transcription, DefaultDWFSA.InsertionMask mask, java.lang.String insertionSymbol, Alphabet alphabet)
          Creates a DefaultDWFSA given a transcription,an insertion mask and an existing Alphabet.
 

Constructors in edu.gtts.sautrela.wfsa.models with parameters of type Alphabet
HMM(org.xml.sax.InputSource is, Alphabet<HMM.Symbol> alphabet)
          Creates a HMM using a XML description found via an InputSource and using an existing Alphabet.
 


Sautrela