com.rethinkdb.model.GroupedResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qj-rethinkdb-driver Show documentation
Show all versions of qj-rethinkdb-driver Show documentation
Java driver for RethinkDB (Modified from Official 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;
}
}