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

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

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

import java.util.List;
import java.util.Map;

public class LogHeader extends AbstractLogHeader {
    private Integer dataRowCount;

    private String indexCurve;
    private String nullValue;
    private List> logCurveInfos;

    public Integer getDataRowCount() {
        return dataRowCount;
    }

    public void setDataRowCount(Integer dataRowCount) {
        this.dataRowCount = dataRowCount;
    }

    public String getIndexCurve() {
        return indexCurve;
    }

    public void setIndexCurve(String indexCurve) {
        this.indexCurve = indexCurve;
    }

    public String getNullValue() {
        return nullValue;
    }

    public void setNullValue(String nullValue) {
        this.nullValue = nullValue;
    }

    public List> getLogCurveInfos() {
        return logCurveInfos;
    }

    public void setLogCurveInfos(List> logCurveInfos) {
        this.logCurveInfos = logCurveInfos;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy