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

net.minidev.ovh.api.vps.OvhVpsOfferEnum Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.vps;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * All offers a VPS can have
 */
public enum OvhVpsOfferEnum {
	@JsonProperty("beta-classic")
	beta_classic("beta-classic"),
	classic("classic"),
	cloud("cloud"),
	cloudram("cloudram"),
	@JsonProperty("game-classic")
	game_classic("game-classic"),
	lowlat("lowlat"),
	ssd("ssd");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy