Uses of Class
morfologik.fsa.core.FSA

Packages that use FSA
morfologik.fsa.core   
morfologik.fsa.dictionary   
 

Uses of FSA in morfologik.fsa.core
 

Subclasses of FSA in morfologik.fsa.core
 class FSAVer5Impl
          FSA (Finite State Automaton) dictionary traversal implementation for version 5 of the FSA automaton.
 

Methods in morfologik.fsa.core that return FSA
static FSA FSA.getInstance(java.io.File fsaFile, java.lang.String dictionaryEncoding)
          This static method will attempt to instantiate an appropriate implementation of the FSA for the version found in file given in the input argument.
static FSA FSA.getInstance(java.io.InputStream fsaStream, java.lang.String dictionaryEncoding)
          This static method will attempt to instantiate an appropriate implementation of the FSA for the version found in file given in the input argument.
 

Methods in morfologik.fsa.core with parameters of type FSA
 FSAMatch FSATraversalHelper.matchSequence(byte[] sequence, FSA fsa)
          Finds a matching path in the dictionary for a given sequence of labels.
 

Uses of FSA in morfologik.fsa.dictionary
 

Fields in morfologik.fsa.dictionary declared as FSA
 FSA Dictionary.fsa
          FSA automaton with the compiled dictionary data.
 

Constructors in morfologik.fsa.dictionary with parameters of type FSA
Dictionary(FSA fsa, DictionaryFeatures features)
          It is strongly recommended to use static methods in this class for reading dictionaries.