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

datamaintain.core.step.Step.kt Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package datamaintain.core.step

enum class Step(val executionOrder: Int) {
    SCAN(1),
    FILTER(2),
    SORT(3),
    PRUNE(4),
    CHECK(5),
    EXECUTE(6);

    fun isSameStepOrExecutedBefore(otherStep: Step): Boolean {
        return otherStep.executionOrder >= this.executionOrder
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy