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 Summary
Modifier 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
-
getTransitions
public com.google.common.collect.ImmutableList<org.apache.calcite.runtime.Automaton.SymbolTransition> getTransitions() -
getEpsilonTransitions
public com.google.common.collect.ImmutableList<org.apache.calcite.runtime.Automaton.EpsilonTransition> getEpsilonTransitions()
-