Uses of Class
fr.umlv.tatoo.runtime.lexer.rules.ProcessReturn

Packages that use ProcessReturn
fr.umlv.tatoo.runtime.lexer   
fr.umlv.tatoo.runtime.lexer.rules   
 

Uses of ProcessReturn in fr.umlv.tatoo.runtime.lexer
 

Methods in fr.umlv.tatoo.runtime.lexer that return ProcessReturn
 ProcessReturn NoLexerErrorRecoveryPolicy.continueRecoverOnError(Lexer<B> lexer, ActionProcessor<R> processor)
           
 ProcessReturn DefaultLexerErrorRecoveryPolicy.continueRecoverOnError(Lexer<B> lexer, ActionProcessor<R> processor)
           
 ProcessReturn LexerErrorRecoveryPolicy.continueRecoverOnError(Lexer<B> lexer, ActionProcessor<R> processor)
          Called when error recovery was initiated by recover on error, and method LexerErrorRecoveryPolicy.errorRecoveryNeedsContinuation() returns true
 ProcessReturn NoLexerErrorRecoveryPolicy.continueRecoverOnUnexpectedEndOfFile(Lexer<B> lexer, ActionProcessor<R> processor)
           
 ProcessReturn DefaultLexerErrorRecoveryPolicy.continueRecoverOnUnexpectedEndOfFile(Lexer<B> lexer, ActionProcessor<R> processor)
           
 ProcessReturn LexerErrorRecoveryPolicy.continueRecoverOnUnexpectedEndOfFile(Lexer<B> lexer, ActionProcessor<R> processor)
          Called when error recovery was initiated by recover on error, and method LexerErrorRecoveryPolicy.unexpectedEndOfFileRecoveryNeedsContinuation() returns true
 

Uses of ProcessReturn in fr.umlv.tatoo.runtime.lexer.rules
 

Methods in fr.umlv.tatoo.runtime.lexer.rules that return ProcessReturn
 ProcessReturn ActionProcessor.step(LexerBuffer buffer, Iterable<? extends R> rules)
          Processes available characters from the input stream.
 ProcessReturn ActionProcessor.stepClose()
          This method is called after ActionProcessor.step(fr.umlv.tatoo.runtime.buffer.LexerBuffer, java.lang.Iterable) has returned MORE and end-of-file is reached
static ProcessReturn ProcessReturn.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ProcessReturn[] ProcessReturn.values()
          Returns an array containing the constants of this enum type, in the order they are declared.