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

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

There is a newer version: 1.20.0
Show newest version
package com.protonail.leveldb.jna;

public class Range {
    private byte[] startKey;
    private byte[] limitKey;

    public Range(byte[] startKey, byte[] limitKey) {
        this.startKey = startKey;
        this.limitKey = limitKey;
    }

    public byte[] getStartKey() {
        return startKey;
    }

    public byte[] getLimitKey() {
        return limitKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy