All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gesellix.couchdb.model.RowReference Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy