net.minidev.ovh.api.price.vps.cloud.OvhModelEnum Maven / Gradle / Ivy
The newest version!
package net.minidev.ovh.api.price.vps.cloud;
/**
* Enum of Models
*/
public enum OvhModelEnum {
model1("model1"),
model2("model2"),
model3("model3"),
model4("model4"),
model5("model5"),
model6("model6");
final String value;
OvhModelEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}