ProcessorChain.failOnError
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.github.fge.jsonschema.core.processing.ProcessorChain.failOnError(Showing top 3 results out of 315)

origin: com.github.java-json-tools/json-schema-core

/**
 * 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")));
}
origin: com.github.fge/json-schema-core

/**
 * 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")));
}
origin: Nextdoor/bender

/**
 * 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")));
}
com.github.fge.jsonschema.core.processingProcessorChainfailOnError

Javadoc

Stop the processing chain on failure

Inserting this into a chain will stop the processing chain if the previous processor ended up with an error (ie, ProcessingReport#isSuccess() returns false).

Popular methods of ProcessorChain

  • chainWith
    Add a processor to the chain
  • getProcessor
  • startWith
    Start a processing chain with a single processor

Popular classes and methods

  • getSharedPreferences (Context)
  • getSupportFragmentManager (FragmentActivity)
  • runOnUiThread (Activity)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Graphics2D (java.awt)
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Notification (javax.management)
    Notifications are events emitted by NotificationEmitters
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)