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

net.minidev.ovh.api.ip.OvhLoadBalancingStateEnum Maven / Gradle / Ivy

package net.minidev.ovh.api.ip;

/**
 * Possible values for load balancing IP state
 */
public enum OvhLoadBalancingStateEnum {
	blacklisted("blacklisted"),
	deleted("deleted"),
	free("free"),
	ok("ok"),
	quarantined("quarantined"),
	suspended("suspended");

	final String value;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy