Uses of Class
dk.brics.automaton.State
-
Uses of State in dk.brics.automaton
Methods in dk.brics.automaton that return StateModifier and TypeMethodDescriptionstatic StateStringUnionOperations.build(CharSequence[] input) Build a minimal, deterministic automaton from a sorted list of strings.Transition.getDest()Returns destination of this transition.StatePair.getFirstState()Returns first component of this pair.Automaton.getInitialState()Gets initial state.StatePair.getSecondState()Returns second component of this pair.State.step(char c) Performs lookup in transitions, assuming determinism.Methods in dk.brics.automaton that return types with arguments of type StateModifier and TypeMethodDescriptionAutomaton.getAcceptStates()Returns the set of reachable accept states.Automaton.getLiveStates()Returns the set of live states.Automaton.getStates()Returns the set of states that are reachable from the initial state.Reverses the language of the given (non-singleton) automaton while returning the set of new initial states.Methods in dk.brics.automaton with parameters of type StateModifier and TypeMethodDescriptionintCompares this object with the specified object for order.voidAutomaton.setInitialState(State s) Sets initial state.Method parameters in dk.brics.automaton with type arguments of type StateModifier and TypeMethodDescriptionvoidState.step(char c, Collection<State> dest) Performs lookup in transitions, allowing nondeterminism.Constructors in dk.brics.automaton with parameters of type StateModifierConstructorDescriptionConstructs a new state pair.Transition(char min, char max, State to) Constructs a new transition.Transition(char c, State to) Constructs a new singleton interval transition.