* @param threshold of type int
*/
@ConstructorProperties({"name", "pipes", "groupingFields", "valueField", "minField", "threshold"})
public MinBy( String name, Pipe[] pipes, Fields groupingFields, Fields valueField, Fields minField, int threshold )
{
super( name, pipes, groupingFields, valueField, new MinPartials( minField ), new MinValue( minField ), threshold );
}