Package | Description |
---|---|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
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.
|
Modifier and Type | Field and Description |
---|---|
private Transition |
IntersectTermsEnum.currentTransition |
(package private) Transition |
IntersectTermsEnumFrame.transition |
Modifier and Type | Field and Description |
---|---|
private Transition |
AutomatonTermsEnum.transition |
Modifier and Type | Field and Description |
---|---|
private Transition |
FiniteStringsIterator.PathNode.t |
private Transition |
CompiledAutomaton.transition |
Modifier and Type | Method and Description |
---|---|
Transition[][] |
Automaton.getSortedTransitions()
Sugar to get all transitions for all states.
|
Modifier and Type | Method and Description |
---|---|
void |
Operations.TransitionList.add(Transition t) |
void |
Operations.PointTransitionSet.add(Transition t) |
void |
Automaton.getNextTransition(Transition t)
Iterate to the next transition after the provided one
|
void |
Automaton.getTransition(int state,
int index,
Transition t)
Fill the provided
Transition 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 boolean |
Automaton.transitionSorted(Transition t) |
Modifier and Type | Field and Description |
---|---|
private Transition |
GraphTokenStreamFiniteStrings.transition |