Package org.apache.calcite.runtime
Class Automaton
java.lang.Object
org.apache.calcite.runtime.Automaton
A nondeterministic finite-state automaton (NFA).
 
It is used to implement the Match
 relational expression (for the MATCH_RECOGNIZE clause in SQL).
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptioncom.google.common.collect.ImmutableList<org.apache.calcite.runtime.Automaton.EpsilonTransition>com.google.common.collect.ImmutableList<org.apache.calcite.runtime.Automaton.SymbolTransition>
- 
Method Details- 
getTransitionspublic com.google.common.collect.ImmutableList<org.apache.calcite.runtime.Automaton.SymbolTransition> getTransitions()
- 
getEpsilonTransitionspublic com.google.common.collect.ImmutableList<org.apache.calcite.runtime.Automaton.EpsilonTransition> getEpsilonTransitions()
 
-