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

com.danielflower.restabuild.build.BuildStatus Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.danielflower.restabuild.build;

public enum BuildStatus {

    QUEUED(false), IN_PROGRESS(false), SUCCESS(true), FAILURE(true), CANCELLING(false), CANCELLED(true), TIMED_OUT(true);

    private final boolean endState;

    BuildStatus(boolean endState) {
        this.endState = endState;
    }

    public boolean endState() {
        return endState;
    }
    public boolean isCancellable() { return !endState && this != CANCELLING; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy