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

com.yandex.ydb.table.description.KeyRange Maven / Gradle / Ivy

There is a newer version: 1.45.6
Show newest version
package com.yandex.ydb.table.description;

import java.util.Optional;

public class KeyRange {
    private final Optional from;
    private final Optional to;

    public KeyRange(
            Optional from,
            Optional to
    ) {
        this.from = from;
        this.to = to;
    }

    public Optional getFrom() {
        return from;
    }

    public Optional getTo() {
        return to;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy