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

net.minidev.ovh.api.dedicated.server.OvhUsbKeyCapacityEnum Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.dedicated.server;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 *  Different USB key capacity in gigabytes
 */
public enum OvhUsbKeyCapacityEnum {
	@JsonProperty("128")
	_128("128"),
	@JsonProperty("16")
	_16("16"),
	@JsonProperty("256")
	_256("256"),
	@JsonProperty("32")
	_32("32"),
	@JsonProperty("64")
	_64("64");

	final String value;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy