package ocpp.v15.cp; 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 ResetType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="ResetType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Hard"/> * <enumeration value="Soft"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "ResetType") @XmlEnum @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:14:37+12:00", comments = "JAXB RI v2.2.4-2") public enum ResetType { @XmlEnumValue("Hard") HARD("Hard"), @XmlEnumValue("Soft") SOFT("Soft"); private final String value; ResetType(String v) { value = v; } public String value() { return value; } public static ResetType fromValue(String v) { for (ResetType c: ResetType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }