blob: 47458279d080013ca7c8b86a115165aa95e5a5cb [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 getPrefix();
}