
net.minidev.ovh.api.dedicated.server.OvhSupportLevelOrderableEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.dedicated.server;
/**
* distincts support level
*/
public enum OvhSupportLevelOrderableEnum {
critical("critical"),
fastpath("fastpath"),
gs("gs");
final String value;
OvhSupportLevelOrderableEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy