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

com.flagsense.enums.Environment Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.flagsense.enums;

public enum Environment {
    DEV, STAGE, PROD;

    public static boolean isValid(String env) {
        for (Environment environment : Environment.values()) {
            if (environment.name().equals(env))
                return true;
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy