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

org.boon.slumberdb.entries.LoadedEntry Maven / Gradle / Ivy

package org.boon.slumberdb.entries;

/**
 * Created by Richard on 9/23/14.
 */
public class LoadedEntry {

    VersionKey key;

    V value;


    public LoadedEntry(VersionKey key, V value) {
        this.key = key;
        this.value = value;
    }

    public VersionKey key() {
        return key;
    }

    public V value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy