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

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

package org.boon.slumberdb.entries;



import java.io.Serializable;
import java.util.Map;

/**
 * Represents an entry in the database.
 *
 * @param  key
 * @param  value
 */
public class Entry extends org.boon.Pair implements Serializable {



    public Entry() {

    }

    public Entry(Map.Entry entry) {
        super(entry.getKey(), entry.getValue());
    }


    public Entry(K k, V v) {
        super(k, v);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy