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