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

com.github.ibole.infrastructure.common.properties.Env Maven / Gradle / Ivy

The newest version!
package com.github.ibole.infrastructure.common.properties;

public enum Env {

  DEV("dev"), QA("qa"), PRODUCTION("production");

  private String value;

  Env(String env) {
    this.value = env;
  }

  public String getValue() {
    return value;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy