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

energyml.prodml2_0.TestReason Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// 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 TestReason. * *

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

 * <simpleType name="TestReason">
 *   <restriction base="{http://www.energistics.org/energyml/data/commonv2}TypeEnum">
 *     <enumeration value="initial"/>
 *     <enumeration value="other"/>
 *     <enumeration value="periodic"/>
 *     <enumeration value="revision"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TestReason") @XmlEnum public enum TestReason { /** * initial * */ @XmlEnumValue("initial") INITIAL("initial"), /** * other * */ @XmlEnumValue("other") OTHER("other"), /** * periodic * */ @XmlEnumValue("periodic") PERIODIC("periodic"), /** * revision * */ @XmlEnumValue("revision") REVISION("revision"); private final String value; TestReason(String v) { value = v; } public String value() { return value; } public static TestReason fromValue(String v) { for (TestReason c: TestReason.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy