blob: d550ab47a00b12a527935bfe2bd186552169ee19 [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 that have some prefix.
*/
public interface PrefixRange extends RowRange {
/**
* Returns the prefix shared by all the keys in the range.
*/
String prefix();
}