Uses of Class
org.apache.pinot.segment.local.utils.nativefst.automaton.State
-
Packages that use State Package Description org.apache.pinot.segment.local.utils.nativefst.automaton org.apache.pinot.segment.local.utils.nativefst.utils -
-
Uses of State in org.apache.pinot.segment.local.utils.nativefst.automaton
Fields in org.apache.pinot.segment.local.utils.nativefst.automaton declared as State Modifier and Type Field Description StateTransition. _toMethods in org.apache.pinot.segment.local.utils.nativefst.automaton that return State Modifier and Type Method Description static StateStringUnionOperations. build(CharSequence[] input)Build a minimal, deterministic automaton from a sorted list of strings.StateTransition. getDest()Returns destination of this transition.StateAutomaton. getInitialState()Gets initial state.StateState. step(char c)Performs lookup in transitions, assuming determinism.Methods in org.apache.pinot.segment.local.utils.nativefst.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.Set<State>Automaton. getStates()Returns the set of states that are reachable from the initial state.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.pinot.segment.local.utils.nativefst.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. setInitialState(State s)Sets initial state.Method parameters in org.apache.pinot.segment.local.utils.nativefst.automaton with type arguments of type State Modifier and Type Method Description voidState. step(char c, Collection<State> dest)Performs lookup in transitions, allowing nondeterminism.Constructors in org.apache.pinot.segment.local.utils.nativefst.automaton with parameters of type State Constructor Description StatePair(State firstState, State s2)Constructs 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. -
Uses of State in org.apache.pinot.segment.local.utils.nativefst.utils
Fields in org.apache.pinot.segment.local.utils.nativefst.utils declared as State Modifier and Type Field Description StateRealTimeRegexpMatcher.Path. _stateStateRegexpMatcher.Path. _stateConstructors in org.apache.pinot.segment.local.utils.nativefst.utils with parameters of type State Constructor Description Path(State state, MutableState node, MutableArc fstArc, List<Character> pathState)Path(State state, int node, int fstArc, List<Character> pathState)
-