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

com.hashmapinc.tempus.WitsmlObjects.v1311.ForcePerLengthUom Maven / Gradle / Ivy

Go to download

This library assists in serializing and deserializing WITSML 1.3.1.1 and 1.4.1.1 Objects

There is a newer version: 1.1.48.1
Show newest version
package com.hashmapinc.tempus.WitsmlObjects.v1311;

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


/**
 * 

Java class for forcePerLengthUom. * *

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

 {@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * } 
* */ @XmlType(name = "forcePerLengthUom") @XmlEnum public enum ForcePerLengthUom { @XmlEnumValue("N/30m") N_30_M("N/30m"), @XmlEnumValue("N/m") N_M("N/m"), @XmlEnumValue("dyne/cm") DYNE_CM("dyne/cm"), @XmlEnumValue("kN/m") K_N_M("kN/m"), @XmlEnumValue("kgf/cm") KGF_CM("kgf/cm"), @XmlEnumValue("lbf/100ft") LBF_100_FT("lbf/100ft"), @XmlEnumValue("lbf/30m") LBF_30_M("lbf/30m"), @XmlEnumValue("lbf/ft") LBF_FT("lbf/ft"), @XmlEnumValue("lbf/in") LBF_IN("lbf/in"), @XmlEnumValue("mN/km") M_N_KM("mN/km"), @XmlEnumValue("mN/m") M_N_M("mN/m"), @XmlEnumValue("pdl/cm") PDL_CM("pdl/cm"), @XmlEnumValue("tonfUK/ft") TONF_UK_FT("tonfUK/ft"), @XmlEnumValue("tonfUS/ft") TONF_US_FT("tonfUS/ft"); private final String value; ForcePerLengthUom(String v) { value = v; } public String value() { return value; } public static ForcePerLengthUom fromValue(String v) { for (ForcePerLengthUom c: ForcePerLengthUom.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy