@Override
 public String toString() {
   DataType<T> type = (DataType<T>) builder.getDataType();
   return "Interval[min="
       + type.format(min)
       + ", max="
       + type.format(max)
       + ", function="
       + function.toString()
       + "]";
 }