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

energyml.common2_1.AreaPerTimeUom Maven / Gradle / Ivy

//
// 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.common2_1;

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


/**
 * 

Java class for AreaPerTimeUom. * *

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

 * <simpleType name="AreaPerTimeUom">
 *   <restriction base="{http://www.energistics.org/energyml/data/commonv2}UomEnum">
 *     <enumeration value="cm2/s"/>
 *     <enumeration value="ft2/h"/>
 *     <enumeration value="ft2/s"/>
 *     <enumeration value="in2/s"/>
 *     <enumeration value="m2/d"/>
 *     <enumeration value="m2/h"/>
 *     <enumeration value="m2/s"/>
 *     <enumeration value="mm2/s"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AreaPerTimeUom") @XmlEnum public enum AreaPerTimeUom { /** * square centimetre per second * */ @XmlEnumValue("cm2/s") CM_2_S("cm2/s"), /** * square foot per hour * */ @XmlEnumValue("ft2/h") FT_2_H("ft2/h"), /** * square foot per second * */ @XmlEnumValue("ft2/s") FT_2_S("ft2/s"), /** * square inch per second * */ @XmlEnumValue("in2/s") IN_2_S("in2/s"), /** * square metre per day * */ @XmlEnumValue("m2/d") M_2_D("m2/d"), /** * square metre per hour * */ @XmlEnumValue("m2/h") M_2_H("m2/h"), /** * square metre per second * */ @XmlEnumValue("m2/s") M_2_S("m2/s"), /** * square millimetre per second * */ @XmlEnumValue("mm2/s") MM_2_S("mm2/s"); private final String value; AreaPerTimeUom(String v) { value = v; } public String value() { return value; } public static AreaPerTimeUom fromValue(String v) { for (AreaPerTimeUom c: AreaPerTimeUom.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy