com.couchbase.lite.support.Range Maven / Gradle / Ivy
package com.couchbase.lite.support;
public class Range {
private int location;
private int length;
Range(int location, int length) {
this.location = location;
this.length = length;
}
public int getLocation() {
return location;
}
public int getLength() {
return length;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy