public static interface SuffixTree.IVisitor
SuffixTree.VisitorAdapterboolean pre(int state)
state is descended into.false omits the subtree of state.
post(int) is not invoked for this state if skipped.void post(int state)
state is fully traversed.state - Identifier of the completed state.boolean edge(int fromState,
int toState,
int startIndex,
int endIndex)
false skips the traversal of
toState.