All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.senseidb.search.client.json.req.GroupBy Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.senseidb.search.client.json.req;

import java.util.List;

/**
 * Group-by field: the field name used for the group-by operation (also called field collapsing )
 *
 */
public class GroupBy {
    private List columns;
    private int top;
    public GroupBy() {
	}
    public GroupBy(List columns, int top) {
        this.columns = columns;
        this.top = top;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy