com.foursoft.harness.kbl.v24.KblConnectorUsage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbl-v24 Show documentation
Show all versions of kbl-v24 Show documentation
The model for KBL version 2.4.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.07.05 at 05:22:49 PM UTC
//
package com.foursoft.harness.kbl.v24;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Connector_usage.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="Connector_usage">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="no end"/>
* <enumeration value="ring terminal"/>
* <enumeration value="splice"/>
* <enumeration value="dangler"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "Connector_usage", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema")
@XmlEnum
public enum KblConnectorUsage {
@XmlEnumValue("no end")
NO_END("no end"),
@XmlEnumValue("ring terminal")
RING_TERMINAL("ring terminal"),
@XmlEnumValue("splice")
SPLICE("splice"),
@XmlEnumValue("dangler")
DANGLER("dangler");
private final String value;
KblConnectorUsage(String v) {
value = v;
}
public String value() {
return value;
}
public static KblConnectorUsage fromValue(String v) {
for (KblConnectorUsage c: KblConnectorUsage.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}