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

energyml.common2_1.VolumetricHeatTransferCoefficientUom 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.common2_1;

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


/**
 * 

Java class for VolumetricHeatTransferCoefficientUom. * *

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

 * <simpleType name="VolumetricHeatTransferCoefficientUom">
 *   <restriction base="{http://www.energistics.org/energyml/data/commonv2}UomEnum">
 *     <enumeration value="Btu[IT]/(h.ft3.deltaF)"/>
 *     <enumeration value="Btu[IT]/(s.ft3.deltaF)"/>
 *     <enumeration value="kW/(m3.deltaK)"/>
 *     <enumeration value="W/(m3.deltaK)"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VolumetricHeatTransferCoefficientUom") @XmlEnum public enum VolumetricHeatTransferCoefficientUom { /** * BTU per hour cubic foot delta Fahrenheit * */ @XmlEnumValue("Btu[IT]/(h.ft3.deltaF)") BTU_IT_H_FT_3_DELTA_F("Btu[IT]/(h.ft3.deltaF)"), /** * (BTU per second) per cubic foot delta Fahrenheit * */ @XmlEnumValue("Btu[IT]/(s.ft3.deltaF)") BTU_IT_S_FT_3_DELTA_F("Btu[IT]/(s.ft3.deltaF)"), /** * killowatt per cubic metre delta kelvin * */ @XmlEnumValue("kW/(m3.deltaK)") K_W_M_3_DELTA_K("kW/(m3.deltaK)"), /** * watt per cubic metre delta kelvin * */ @XmlEnumValue("W/(m3.deltaK)") W_M_3_DELTA_K("W/(m3.deltaK)"); private final String value; VolumetricHeatTransferCoefficientUom(String v) { value = v; } public String value() { return value; } public static VolumetricHeatTransferCoefficientUom fromValue(String v) { for (VolumetricHeatTransferCoefficientUom c: VolumetricHeatTransferCoefficientUom.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy