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

play.db.evolutions.EvolutionState Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package play.db.evolutions;

public enum EvolutionState {
    APPLIED, APPLYING_UP, APPLYING_DOWN;

    public String getStateWord() {
        return this.name().toLowerCase();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy