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

cern.online.analysis.core.AssertionStatus Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
/**
 * Copyright (c) 2016 European Organisation for Nuclear Research (CERN), All Rights Reserved.
 */

package cern.online.analysis.core;

public enum AssertionStatus {
    SUCCESSFUL,
    FAILURE,
    ERROR,
    NONAPPLICABLE;

    public static final AssertionStatus fromBooleanSuccessful(boolean isOk) {
        if (isOk) {
            return SUCCESSFUL;
        } else {
            return FAILURE;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy