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 AvailabilityType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="AvailabilityType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Inoperative"/> * <enumeration value="Operative"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "AvailabilityType") @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 AvailabilityType { @XmlEnumValue("Inoperative") INOPERATIVE("Inoperative"), @XmlEnumValue("Operative") OPERATIVE("Operative"); private final String value; AvailabilityType(String v) { value = v; } public String value() { return value; } public static AvailabilityType fromValue(String v) { for (AvailabilityType c: AvailabilityType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }