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

io.metersphere.constants.RunModeConstants Maven / Gradle / Ivy

package io.metersphere.constants;

public enum RunModeConstants {

    SERIAL("serial"), SET_REPORT("setReport"), INDEPENDENCE("Independence"), PARALLEL("parallel"), HIS_PRO_ID("historyProjectID");

    private String value;

    RunModeConstants(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy