Uses of Class
morfologik.fsa.bytes.State

Packages that use State
morfologik.fsa.bytes   
 

Uses of State in morfologik.fsa.bytes
 

Methods in morfologik.fsa.bytes that return State
static State FSABuilder.build(byte[][] input)
          Build a minimal, deterministic automaton from a sorted list of byte sequences.
static State FSABuilder.build(Iterable<byte[]> input)
          Build a minimal, deterministic automaton from an iterable list of byte sequences.
 State FSABuilder.complete()
          Finalize the automaton and return the root state.
 State State.getState(byte 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.bytes with parameters of type State
static FSAInfo StateUtils.getInfo(State s)
          Calculate automaton statistics.
static ArrayList<byte[]> StateUtils.rightLanguage(State state)
          All byte sequences generated as the right language of state.
<T extends OutputStream>
T
FSA5Serializer.serialize(State s, T os)
          Serialize root state s to an output stream.
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.bytes 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.