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

com.hashmapinc.tempus.WitsmlObjects.Util.log.TimeLogTrace 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.Util.log;

import java.util.HashMap;
import java.util.Map;

/**
 * An implementation of AbstractDataTrace that represents a time indexed trace
 * @param  The data type of the value.
 */
public class TimeLogTrace  extends AbstractDataTrace {

    private Map values = new HashMap();

    @Override
    public LogIndexType getIndexType(){
        return LogIndexType.TIME;
    }

    @Override
    public Map getValues() {
        return values;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy