net.minidev.ovh.api.price.xdsl.OvhInstallationEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.price.xdsl;
/**
 * Enum of Installations
 */
public enum OvhInstallationEnum {
	backup("backup");
	final String value;
	OvhInstallationEnum(String s) {
		this.value = s;
	}
	public String toString() {
		return this.value;
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy