com.flagsense.enums.Environment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java SDK for consuming flagsense services
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;
}
}