All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.issues.checks.CheckResult Maven / Gradle / Ivy

The newest version!
package cdc.issues.checks;

/**
 * Enumeration of possible test results.
 *
 * @author Damien Carbonne
 */
public enum CheckResult {
    /**
     * The rule is disabled.
     */
    DISABLED,

    /**
     * The rule is enabled, applicable to object, passed on object, successful.
     */
    SUCCESS,

    /**
     * The rule is enabled, applicable to object, passed on object, failed.
     */
    FAILURE,

    /**
     * The rule is enabled, applicable to object, passed on object and the checker raised an exception.
     * There is a bug in checker implementation.
     */
    EXCEPTION,

    /**
     * The rule is enabled, applicable to object, but could not be passed because it is misconfigured.
     */
    MISCONFIGURED,

    /**
     * The rule is enabled, not applicable to object, skipped.
     */
    SKIPPED,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy