com.fizzed.bigmap.impl.KeyValueBytes Maven / Gradle / Ivy
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