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

net.intelie.liverig.witsml.objects.WellVerticalDepthUom Maven / Gradle / Ivy

The newest version!
package net.intelie.liverig.witsml.objects;

public enum WellVerticalDepthUom {

    /**
     * meter
     */
    M("m"),

    /**
     * International Foot
     */
    FT("ft"),

    /**
     * US Survey Foot
     */
    FT_US("ftUS"),

    /**
     * British Foot 1865
     */
    FT_BR_65("ftBr(65)");
    private final String value;

    WellVerticalDepthUom(String v) {
        value = v;
    }

    public String value() {
        return value;
    }

    public static WellVerticalDepthUom fromValue(String v) {
        for (WellVerticalDepthUom c : WellVerticalDepthUom.values()) {
            if (c.value.equals(v)) {
                return c;
            }
        }
        throw new IllegalArgumentException(v);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy