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

com.protonail.leveldb.jna.KeyValuePair Maven / Gradle / Ivy

There is a newer version: 1.20.0
Show newest version
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