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

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

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

public class ChannelSetIndex {
    private String mnemonic;
    private String uom;
    private String indexType;
    private String direction;

    public ChannelSetIndex(String mnemonic, String uom, String indexType, String direction) {
        this.mnemonic = mnemonic;
        this.uom = uom;
        this.indexType = indexType;
        this.direction = direction;
    }

    public String getMnemonic() {
        return mnemonic;
    }

    public String getUom() {
        return uom;
    }

    public String getIndexType() {
        return indexType;
    }

    public String getDirection() {
        return direction;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy