예제 #1
0
파일: ViewQuery.java 프로젝트: rrva/Ektorp
 /**
  * @param Will be JSON-encoded.
  * @return the view query for chained calls
  */
 public ViewQuery endKey(long l) {
   reset();
   endKey = Long.toString(l);
   return this;
 }
예제 #2
0
파일: ViewQuery.java 프로젝트: rrva/Ektorp
 /**
  * @param Will be JSON-encoded.
  * @return the view query for chained calls
  */
 public ViewQuery startKey(long l) {
   reset();
   startKey = Long.toString(l);
   return this;
 }