public class AggregateUniqueResponse extends Object
GPUdb.aggregateUnique(AggregateUniqueRequest)
.Modifier and Type | Class and Description |
---|---|
static class |
AggregateUniqueResponse.Info
Additional information.
|
Constructor and Description |
---|
AggregateUniqueResponse()
Constructs an AggregateUniqueResponse object with default parameters.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
List<Record> |
getData() |
Type |
getDataType() |
boolean |
getHasMoreRecords() |
Map<String,String> |
getInfo() |
String |
getTableName() |
int |
hashCode() |
AggregateUniqueResponse |
setData(List<Record> data) |
AggregateUniqueResponse |
setDataType(Type dataType) |
AggregateUniqueResponse |
setHasMoreRecords(boolean hasMoreRecords) |
AggregateUniqueResponse |
setInfo(Map<String,String> info) |
AggregateUniqueResponse |
setTableName(String tableName) |
String |
toString() |
public AggregateUniqueResponse()
public String getTableName()
public AggregateUniqueResponse setTableName(String tableName)
tableName
- The same table name as was passed in the parameter
list.this
to mimic the builder pattern.public AggregateUniqueResponse setData(List<Record> data)
data
- Avro binary encoded response.this
to mimic the builder pattern.public boolean getHasMoreRecords()
public AggregateUniqueResponse setHasMoreRecords(boolean hasMoreRecords)
hasMoreRecords
- Too many records. Returned a partial set.this
to mimic the builder pattern.public Map<String,String> getInfo()
QUALIFIED_RESULT_TABLE_NAME
: The fully qualified name of the
table (i.e. including the schema) used to store the results.
Map
.public AggregateUniqueResponse setInfo(Map<String,String> info)
info
- Additional information.
QUALIFIED_RESULT_TABLE_NAME
: The fully qualified name of
the table (i.e. including the schema) used to store the
results.
Map
.this
to mimic the builder pattern.public Type getDataType()
Type
object containing the type of the dynamically
generated data.public AggregateUniqueResponse setDataType(Type dataType)
dataType
- The Type
object containing the type of the
dynamically generated data.this
to mimic the builder pattern.Copyright © 2024. All rights reserved.