Example #1
0
 /**
  * @param Will be JSON-encoded.
  * @return the view query for chained calls
  */
 public ViewQuery endKey(boolean b) {
   reset();
   endKey = Boolean.toString(b);
   return this;
 }
Example #2
0
 /**
  * @param Will be JSON-encoded.
  * @return the view query for chained calls
  */
 public ViewQuery startKey(boolean b) {
   reset();
   startKey = Boolean.toString(b);
   return this;
 }