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

net.minidev.ovh.api.partner.OvhTechnicalExpertResourcesRangeEnum Maven / Gradle / Ivy

package net.minidev.ovh.api.partner;

/**
 * Possible ranges for revenue
 */
public enum OvhTechnicalExpertResourcesRangeEnum {
	none("none"),
	from1To3("from1To3"),
	from4To10("from4To10"),
	moreThan10("moreThan10");

	final String value;

	OvhTechnicalExpertResourcesRangeEnum(String s) {
		this.value = s;
	}

	public String toString() {
		return this.value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy