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