blob: e1f9503682496c6ed95cc1f2b834ecd4684f2047 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.v23.services.syncbase.nosql;
/**
* Represents all rows with keys in {@code [start, limit)}. If limit is {@code ""}, all rows with
* keys ≥ {@code start} are included.
*/
public interface RowRange {
/**
* Returns the key that marks the start of the row range.
*/
public String start();
/**
* Returns the key that marks the limit of the row range.
*/
public String limit();
}