com.protonail.leveldb.jna.KeyValuePair Maven / Gradle / Ivy
package com.protonail.leveldb.jna;
public class KeyValuePair {
private byte[] key;
private byte[] value;
public KeyValuePair(byte[] key, byte[] value) {
this.key = key;
this.value = value;
}
public byte[] getKey() {
return key;
}
public byte[] getValue() {
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy