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