* A variadic list of upper bounds of each partition.
* @return An instance of the builder for method chaining.
* @see IntRangeFieldPartitioner
*/
public Builder range(String sourceName, int... upperBounds) {
add(new IntRangeFieldPartitioner(sourceName, upperBounds));
return this;
}