Uses of Class
org.apache.lucene.util.automaton.Transition
-
Packages that use Transition Package Description org.apache.lucene.backward_codecs.lucene40.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.org.apache.lucene.codecs.lucene90.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.uniformsplit Pluggable term index / block terms dictionary implementations.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util.automaton Finite-state automaton for regular expressions.org.apache.lucene.util.graph Utility classes for working with token streams as graphs. -
-
Uses of Transition in org.apache.lucene.backward_codecs.lucene40.blocktree
Fields in org.apache.lucene.backward_codecs.lucene40.blocktree declared as Transition Modifier and Type Field Description private Transition
IntersectTermsEnum. currentTransition
(package private) Transition
IntersectTermsEnumFrame. transition
-
Uses of Transition in org.apache.lucene.codecs.blocktreeords
Fields in org.apache.lucene.codecs.blocktreeords declared as Transition Modifier and Type Field Description (package private) Transition
OrdsIntersectTermsEnumFrame. transition
-
Uses of Transition in org.apache.lucene.codecs.lucene90.blocktree
Fields in org.apache.lucene.codecs.lucene90.blocktree declared as Transition Modifier and Type Field Description private Transition
IntersectTermsEnum. currentTransition
(package private) Transition
IntersectTermsEnumFrame. transition
-
Uses of Transition in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as Transition Modifier and Type Field Description (package private) Transition
DirectPostingsFormat.DirectField.DirectIntersectTermsEnum.State. transition
-
Uses of Transition in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as Transition Modifier and Type Field Description protected Transition
IntersectBlockReader.AutomatonNextTermCalculator. transition
-
Uses of Transition in org.apache.lucene.index
Fields in org.apache.lucene.index declared as Transition Modifier and Type Field Description private Transition
AutomatonTermsEnum. transition
-
Uses of Transition in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as Transition Modifier and Type Field Description private Transition
FiniteStringsIterator.PathNode. t
private Transition
CompiledAutomaton. transition
Methods in org.apache.lucene.util.automaton that return Transition Modifier and Type Method Description Transition[][]
Automaton. getSortedTransitions()
Sugar to get all transitions for all states.Methods in org.apache.lucene.util.automaton with parameters of type Transition Modifier and Type Method Description void
Operations.PointTransitionSet. add(Transition t)
void
Operations.TransitionList. add(Transition t)
void
Automaton. getNextTransition(Transition t)
Iterate to the next transition after the provided onevoid
Automaton. getTransition(int state, int index, Transition t)
Fill the providedTransition
with the index'th transition leaving the specified state.int
Automaton. initTransition(int state, Transition t)
Initialize the provided Transition to iterate through all transitions leaving the specified state.private static boolean
Operations. isFinite(Transition scratch, Automaton a, int state, java.util.BitSet path, java.util.BitSet visited, int level)
Checks whether there is a loop containing state.private int
Automaton. next(int state, int fromTransitionIndex, int label, Transition transition)
Looks for the next transition that matches the provided label, assuming determinism.int
Automaton. next(Transition transition, int label)
Looks for the next transition that matches the provided label, assuming determinism.private boolean
Automaton. transitionSorted(Transition t)
-
Uses of Transition in org.apache.lucene.util.graph
Fields in org.apache.lucene.util.graph declared as Transition Modifier and Type Field Description private Transition
GraphTokenStreamFiniteStrings. transition
-