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

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

package play.db.evolutions;

public enum EvolutionState{
	APPLIED, APPLYING_UP, APPLYING_DOWN;
		
	public String getStateWord(){
	    return this.name().toLowerCase();
	}
 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy