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

com.rethinkdb.model.GroupedResult Maven / Gradle / Ivy

There is a newer version: 2.3.2.20160729
Show newest version
package com.rethinkdb.model;

import java.util.List;

public class GroupedResult {
    public final G group;
    public final List values;

    public GroupedResult(G group, List values){
        this.group = group;
        this.values = values;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy