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