limit method

Query<T> limit(
  1. int limit
)

Implementation

Query<T> limit(int limit) {
  _limit = limit;

  return this;
}