blob: 7363fc1a2ca52b13f7e72f248b4b3860a8bd1331 [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;
class RowRangeImpl implements RowRange {
private final String start, limit;
RowRangeImpl(String start, String limit) {
this.start = start;
this.limit = limit;
}
RowRangeImpl(String row) {
this.start = this.limit = row;
}
@Override
public String start() { return this.start; }
@Override
public String limit() { return this.limit; }
}