Uses of Class
org.apache.lucene.util.automaton.Transition
Packages that use Transition
Package
Description
Finite-state automaton for regular expressions.
-
Uses of Transition in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as TransitionModifier and TypeFieldDescriptionfinal Transition[][]
CompiledAutomaton.sortedTransitions
Two dimensional array of transitions, indexed by state number for traversal.State.transitionsArray
Fields in org.apache.lucene.util.automaton with type parameters of type TransitionModifier and TypeFieldDescriptionstatic final Comparator<Transition>
Transition.CompareByDestThenMinMax
static final Comparator<Transition>
Transition.CompareByMinMaxThenDest
Methods in org.apache.lucene.util.automaton that return TransitionModifier and TypeMethodDescriptionTransition.clone()
Clones this transition.Transition[][]
Automaton.getSortedTransitions()
Returns a sorted array of transitions for each state (and sets state numbers).Methods in org.apache.lucene.util.automaton that return types with arguments of type TransitionModifier and TypeMethodDescriptionState.getTransitions()
Returns the set of outgoing transitions.Methods in org.apache.lucene.util.automaton with parameters of type TransitionModifier and TypeMethodDescriptionvoid
State.addTransition
(Transition t) Adds an outgoing transition.void
State.setTransitions
(Transition[] transitions) Method parameters in org.apache.lucene.util.automaton with type arguments of type TransitionModifier and TypeMethodDescriptionvoid
State.sortTransitions
(Comparator<Transition> comparator) Sorts transitions array in-place.