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

io.descoped.rawdata.memory.MemoryCursor Maven / Gradle / Ivy

The newest version!
package io.descoped.rawdata.memory;

import de.huxhorn.sulky.ulid.ULID;
import io.descoped.rawdata.api.RawdataCursor;

import java.util.Objects;

public class MemoryCursor implements RawdataCursor {

    /**
     * Need not exactly match an existing ulid-value.
     */
    final ULID.Value startKey;

    /**
     * Whether or not to include the element with ulid-value matching the lower-bound exactly.
     */
    final boolean inclusive;

    /**
     * Traversal direction, true signifies forward.
     */
    final boolean forward;

    MemoryCursor(ULID.Value startKey, boolean inclusive, boolean forward) {
        this.startKey = startKey;
        this.inclusive = inclusive;
        this.forward = forward;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        MemoryCursor that = (MemoryCursor) o;
        return inclusive == that.inclusive &&
                forward == that.forward &&
                startKey.equals(that.startKey);
    }

    @Override
    public int hashCode() {
        return Objects.hash(startKey, inclusive, forward);
    }

    @Override
    public String toString() {
        return "MemoryCursor{" +
                "startKey=" + startKey +
                ", inclusive=" + inclusive +
                ", forward=" + forward +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy