![JAR search and dependency download from the Maven repository](/logo.png)
net.minidev.ovh.api.vps.OvhBackupStateEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.vps;
/**
* Available AutomatedBackup states
*/
public enum OvhBackupStateEnum {
disabled("disabled"),
enabled("enabled");
final String value;
OvhBackupStateEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy