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

net.minidev.ovh.api.price.xdsl.OvhOffersEnum Maven / Gradle / Ivy

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

/**
 * Enum of Offerss
 */
public enum OvhOffersEnum {
	backup("backup");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy