MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / getVersion

Method getVersion

java/java/de/crupp/upscaledb/Database.java:88–94  ·  view source on GitHub ↗

Returns the version of the upscaledb library. This method wraps the native ups_get_version function. More information: C documentation @return the upscaledb version tuple

()

Source from the content-addressed store, hash-verified

86 * @return the upscaledb version tuple
87 */
88 public static Version getVersion() {
89 Version v = new Version();
90 v.major = ups_get_version(0);
91 v.minor = ups_get_version(1);
92 v.revision = ups_get_version(2);
93 return v;
94 }
95
96 /**
97 * Registers a custom compare function.

Callers 1

testGetVersionMethod · 0.95

Calls 1

ups_get_versionMethod · 0.95

Tested by 1

testGetVersionMethod · 0.76