jruby/docs BETA
Navigation
org.apache.lucene.util.automaton 19
C Automata
C Automaton
I AutomatonProvider
C ByteRunAutomaton
I ByteRunnable
C CharacterRunAutomaton
C CompiledAutomaton
C FiniteStringsIterator
C LevenshteinAutomata
C LimitedFiniteStringsIterator
C NFARunAutomaton
C Operations
C RegExp
C RunAutomaton
C StatePair
C TooComplexToDeterminizeException
C Transition
I TransitionAccessor
C UTF32ToUTF8
TransitionAccessor — members 4
C get_next_transition(t)
M get_num_transitions(state) int
C get_transition(state, index, t)
M init_transition(state, t) int

org.apache.lucene.util.automaton.TransitionAccessor

interface abstract 4 members

Interface accessing the transitions of an automaton

Instance Methods

get_next_transition

get_next_transition ( Transition t )
Java: getNextTransition(org.apache.lucene.util.automaton.Transition t)

Iterate to the next transition after the provided one

get_num_transitions

int get_num_transitions ( int state )
Java: getNumTransitions(int state)

How many transitions this state has.

get_transition

get_transition ( int state, int index, Transition t )
Java: getTransition(int state, int index, org.apache.lucene.util.automaton.Transition t)

Fill the provided Transition with the index'th transition leaving the specified state.

init_transition

int init_transition ( int state, Transition t )
Java: initTransition(int state, org.apache.lucene.util.automaton.Transition t)

Initialize the provided Transition to iterate through all transitions leaving the specified state. You must call #getNextTransition to get each transition. Returns the number of transitions leaving this state.

this work for additional information regarding copyright ownership.