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

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

package cdc.issues.checks;

/**
 * Enumeration of possible test results.
 *
 * @author Damien Carbonne
 */
public enum CheckResult {
    /** The rule is disabled. */
    DISABLED,
    /** The rule is enabled, the test was passed and successful for item. */
    SUCCESS,
    /** The rule is enabled, the test was passed and failed for item. */
    FAILURE,
    /** The rule is enabled, the test was skipped (not applicable to item). */
    SKIPPED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy