public class AggregateUnpivotResponse extends Object
GPUdb.aggregateUnpivot(AggregateUnpivotRequest)
.Modifier and Type | Class and Description |
---|---|
static class |
AggregateUnpivotResponse.Info
Additional information.
|
Constructor and Description |
---|
AggregateUnpivotResponse()
Constructs an AggregateUnpivotResponse 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() |
long |
getTotalNumberOfRecords() |
int |
hashCode() |
AggregateUnpivotResponse |
setData(List<Record> data) |
AggregateUnpivotResponse |
setDataType(Type dataType) |
AggregateUnpivotResponse |
setHasMoreRecords(boolean hasMoreRecords) |
AggregateUnpivotResponse |
setInfo(Map<String,String> info) |
AggregateUnpivotResponse |
setTableName(String tableName) |
AggregateUnpivotResponse |
setTotalNumberOfRecords(long totalNumberOfRecords) |
String |
toString() |
public AggregateUnpivotResponse()
public String getTableName()
public AggregateUnpivotResponse setTableName(String tableName)
tableName
- Typically shows the result-table name if provided in
the request (Ignore otherwise).this
to mimic the builder pattern.public AggregateUnpivotResponse setData(List<Record> data)
data
- Avro binary encoded response.this
to mimic the builder pattern.public long getTotalNumberOfRecords()
public AggregateUnpivotResponse setTotalNumberOfRecords(long totalNumberOfRecords)
totalNumberOfRecords
- Total/Filtered number of records.this
to mimic the builder pattern.public boolean getHasMoreRecords()
public AggregateUnpivotResponse 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 AggregateUnpivotResponse 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 AggregateUnpivotResponse 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.