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