net.anotheria.anosite.gen.shared.data.ExperimentDistributionEnum Maven / Gradle / Ivy
/**
********************************************************************************
*** ExperimentDistributionEnum.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.shared.data;
import net.anotheria.asg.exception.ConstantNotFoundException;
public enum ExperimentDistributionEnum{
ODDEVEN(1),
THIRD(2),
QUARTER(3),
CUSTOM(4);
private final int value;
private ExperimentDistributionEnum(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public static ExperimentDistributionEnum getConstantByValue(int value) throws ConstantNotFoundException {
for (ExperimentDistributionEnum e : values()) {
if (e.getValue() == value) {
return e;
}
}
throw new ConstantNotFoundException("Enum value not found by value " + value);
}
}