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

com.infomaximum.database.provider.KeyValue Maven / Gradle / Ivy

The newest version!
package com.infomaximum.database.provider;

import java.io.Serializable;

public class KeyValue implements Serializable {

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

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