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

net.minidev.ovh.api.price.domain.zone.OvhOptionEnum Maven / Gradle / Ivy

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

/**
 * Enum of Options
 */
public enum OvhOptionEnum {
	dnsAnycast("dnsAnycast");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy