For IntelliJ IDEA,
Android Studio or Eclipse



/** * Stop the processing chain on failure * * <p>Inserting this into a chain will stop the processing chain if the * previous processor ended up with an error (ie, {@link * ProcessingReport#isSuccess()} returns {@code false}).</p> * * @return a new chain */ public ProcessorChain<IN, OUT> failOnError() { return failOnError(new ProcessingMessage() .setMessage(BUNDLE.getMessage("processing.chainStopped"))); }
/** * Stop the processing chain on failure * * <p>Inserting this into a chain will stop the processing chain if the * previous processor ended up with an error (ie, {@link * ProcessingReport#isSuccess()} returns {@code false}).</p> * * @return a new chain */ public ProcessorChain<IN, OUT> failOnError() { return failOnError(new ProcessingMessage() .setMessage(BUNDLE.getMessage("processing.chainStopped"))); }
/** * Stop the processing chain on failure * * <p>Inserting this into a chain will stop the processing chain if the * previous processor ended up with an error (ie, {@link * ProcessingReport#isSuccess()} returns {@code false}).</p> * * @return a new chain */ public ProcessorChain<IN, OUT> failOnError() { return failOnError(new ProcessingMessage() .setMessage(BUNDLE.getMessage("processing.chainStopped"))); }