
org.ehcache.xml.model.MemoryUnit Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.17-hudson-jaxb-ri-2.1-pushtomaven-253--SNAPSHOT
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.05.09 at 03:00:53 AM PDT
//
package org.ehcache.xml.model;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for memory-unit.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="memory-unit">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="B"/>
* <enumeration value="kB"/>
* <enumeration value="MB"/>
* <enumeration value="GB"/>
* <enumeration value="TB"/>
* <enumeration value="PB"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "memory-unit")
@XmlEnum
public enum MemoryUnit {
B("B"),
@XmlEnumValue("kB")
K_B("kB"),
MB("MB"),
GB("GB"),
TB("TB"),
PB("PB");
private final String value;
MemoryUnit(String v) {
value = v;
}
public String value() {
return value;
}
public static MemoryUnit fromValue(String v) {
for (MemoryUnit c: MemoryUnit.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}