Uses of Class
org.apache.lucene.util.automaton.State
-
Packages that use State Package Description org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of State in org.apache.lucene.util.automaton
Methods in org.apache.lucene.util.automaton that return State Modifier and Type Method Description StateTransition. getDest()Returns destination of this transition.StateStatePair. getFirstState()Returns first component of this pair.StateAutomaton. getInitialState()Gets initial state.State[]Automaton. getNumberedStates()StateStatePair. getSecondState()Returns second component of this pair.StateState. step(int c)Performs lookup in transitions, assuming determinism.Methods in org.apache.lucene.util.automaton that return types with arguments of type State Modifier and Type Method Description Set<State>Automaton. getAcceptStates()Returns the set of reachable accept states.static Set<State>SpecialOperations. reverse(Automaton a)Reverses the language of the given (non-singleton) automaton while returning the set of new initial states.Methods in org.apache.lucene.util.automaton with parameters of type State Modifier and Type Method Description intState. compareTo(State s)Compares this object with the specified object for order.voidAutomaton. setNumberedStates(State[] states)voidAutomaton. setNumberedStates(State[] states, int count)Method parameters in org.apache.lucene.util.automaton with type arguments of type State Modifier and Type Method Description voidState. step(int c, Collection<State> dest)Performs lookup in transitions, allowing nondeterminism.Constructors in org.apache.lucene.util.automaton with parameters of type State Constructor Description Automaton(State initial)Constructs a new automaton that accepts the empty language.StatePair(State s1, State s2)Constructs a new state pair.Transition(int min, int max, State to)Constructs a new transition.Transition(int c, State to)Constructs a new singleton interval transition.
-