445446447448449450451452453454455
* @param limit A value between 1 and 100000 (inclusive). */ public QueryBuilder setLimit (long limit) { if (!(1 <= limit && limit <= 100000)) throw new LimitOutOfBoundsException(limit); put(LIMIT, Long.toString(limit)); return this; }
518519520521522523524525526527528
415416417418419420421422423424425
259260261262263264265266267268269
* @param limit A value between 1 and 100000 (inclusive). */ public RequestBuilder setLimit (long limit) { if (!(1 <= limit && limit <= 100000)) throw new LimitOutOfBoundsException(limit); put(LIMIT, Long.toString(limit)); return this; }
522523524525526527528529530531532
519520521522523524525526527528529
511512513514515516517518519520521
265266267268269270271272273274275