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

com.github.ltsopensource.kv.EmptyCursor Maven / Gradle / Ivy

package com.github.ltsopensource.kv;

/**
 * @author Robert HG ([email protected]) on 12/19/15.
 */
public class EmptyCursor implements Cursor {
    @Override
    public boolean hasNext() {
        return false;
    }

    @Override
    public V next() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy