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

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

package net.minidev.ovh.api.vps;

/**
 * Available periods for the VPS monitoring
 */
public enum OvhVpsMonitoringPeriodEnum {
	lastday("lastday"),
	lastmonth("lastmonth"),
	lastweek("lastweek"),
	lastyear("lastyear"),
	today("today");

	final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy