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

com.fizzed.bigmap.impl.KeyValueBytes Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.fizzed.bigmap.impl;

public class KeyValueBytes {

    private final byte[] key;
    private final byte[] value;

    public KeyValueBytes(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