energyml.prodml2_0.ControlLineMaterial Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of energyml-prodml20 Show documentation
Show all versions of energyml-prodml20 Show documentation
API to interract with energyml (resqml, witml, prodml)
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.prodml2_0;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ControlLineMaterial.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="ControlLineMaterial">
* <restriction base="{http://www.energistics.org/energyml/data/commonv2}TypeEnum">
* <enumeration value="inc 825"/>
* <enumeration value="ss 316"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ControlLineMaterial")
@XmlEnum
public enum ControlLineMaterial {
/**
* inc 825
*
*/
@XmlEnumValue("inc 825")
INC_825("inc 825"),
/**
* ss 316
*
*/
@XmlEnumValue("ss 316")
SS_316("ss 316");
private final String value;
ControlLineMaterial(String v) {
value = v;
}
public String value() {
return value;
}
public static ControlLineMaterial fromValue(String v) {
for (ControlLineMaterial c: ControlLineMaterial.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}