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

net.minidev.ovh.api.price.dedicated.server.OvhProfessionalUseEnum Maven / Gradle / Ivy

The newest version!
package net.minidev.ovh.api.price.dedicated.server;

/**
 * Enum of ProfessionalUses
 */
public enum OvhProfessionalUseEnum {
	bhg("bhg"),
	eg("eg"),
	hg("hg"),
	mg("mg"),
	sp("sp");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy