Uses of Class
morfologik.fsa.characters.State

Packages that use State
morfologik.fsa.characters   
 

Uses of State in morfologik.fsa.characters
 

Methods in morfologik.fsa.characters that return State
static State FSABuilder.build(CharSequence[] input)
          Build a minimal, deterministic automaton from a sorted list of strings.
 State FSABuilder.complete()
          Finalize the automaton and return the root state.
 State State.getState(char label)
          Returns the target state of a transition leaving this state and labeled with label.
 State[] State.getStates()
          Returns an array of outgoing transitions from this state.
 

Methods in morfologik.fsa.characters with parameters of type State
static FSAInfo StateUtils.getInfo(State s)
          Calculate automaton statistics.
static List<String> StateUtils.rightLanguage(State state)
          All strings generated as the right language of state.
static String StateUtils.toDot(State root)
          Returns the right-language reachable from a given graph node, formatted as an input for the graphviz package (expressed in the dot language).
 

Method parameters in morfologik.fsa.characters with type arguments of type State
 void State.postOrder(Visitor<? super State> v)
          Visit all sub-states in post-order.
 void State.preOrder(Visitor<? super State> v)
          Visit all sub-states in pre-order.
 



Copyright © 2010. All Rights Reserved.