![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.liverig.witsml.objects.MeasuredDepthUom Maven / Gradle / Ivy
The newest version!
package net.intelie.liverig.witsml.objects;
public enum MeasuredDepthUom {
/**
* meter
*/
M("m"),
/**
* International Foot
*/
FT("ft"),
/**
* US Survey Foot
*/
FT_US("ftUS");
private final String value;
MeasuredDepthUom(String v) {
value = v;
}
public String value() {
return value;
}
public static MeasuredDepthUom fromValue(String v) {
for (MeasuredDepthUom c : MeasuredDepthUom.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy