package ocpp.v15.cs; import javax.annotation.Generated; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ValueFormat. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="ValueFormat"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Raw"/> * <enumeration value="SignedData"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "ValueFormat") @XmlEnum @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2") public enum ValueFormat { @XmlEnumValue("Raw") RAW("Raw"), @XmlEnumValue("SignedData") SIGNED_DATA("SignedData"); private final String value; ValueFormat(String v) { value = v; } public String value() { return value; } public static ValueFormat fromValue(String v) { for (ValueFormat c: ValueFormat.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }