de.gesellix.couchdb.model.RowReference Maven / Gradle / Ivy
package de.gesellix.couchdb.model;
public interface RowReference {
KeyType getKey();
String getDocId();
static String toString(RowReference> row) {
if (row == null) {
return "null";
}
return String.format("key=%s, docId=%s", row.getKey(), row.getDocId());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy