All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.motown.ocpp.v15.soap.centralsystem.schema.ChargePointStatus Maven / Gradle / Ivy

Go to download

Open Charge Point Protocol (OCPP). Provides a web service endpoint based on OCPP 1.5.

The newest version!

package io.motown.ocpp.v15.soap.centralsystem.schema;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ChargePointStatus. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="ChargePointStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Available"/>
 *     <enumeration value="Occupied"/>
 *     <enumeration value="Faulted"/>
 *     <enumeration value="Unavailable"/>
 *     <enumeration value="Reserved"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ChargePointStatus") @XmlEnum public enum ChargePointStatus { @XmlEnumValue("Available") AVAILABLE("Available"), @XmlEnumValue("Occupied") OCCUPIED("Occupied"), @XmlEnumValue("Faulted") FAULTED("Faulted"), @XmlEnumValue("Unavailable") UNAVAILABLE("Unavailable"), @XmlEnumValue("Reserved") RESERVED("Reserved"); private final String value; ChargePointStatus(String v) { value = v; } public String value() { return value; } public static ChargePointStatus fromValue(String v) { for (ChargePointStatus c: ChargePointStatus.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy