top method

ConjunctionBase top(
  1. int count
)

int count = LIMIT

Implementation

ConjunctionBase top(int count) {
  if (count > 0) {
    _pagesize = count;
  }
  return this;
}