com.yandex.ydb.table.description.KeyRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
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;
}
}