com.hashmapinc.tempus.witsml.api.WitsmlVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of witsml-client Show documentation
Show all versions of witsml-client Show documentation
This library assists in querying a WITSML server for 1.3.1.1 data or 1.4.1.1 data
package com.hashmapinc.tempus.witsml.api;
//public enum WitsmlVersion { VERSION_1311, VERSION_1411 }
public enum WitsmlVersion {
VERSION_1311 ("1.3.1.1"),
VERSION_1411 ("1.4.1.1");
private final String version;
private WitsmlVersion(String v) {
version = v;
}
public String toString() {
return this.version;
}
}