Package com.databricks.sdk.service.sql
Class ResultManifest
- java.lang.Object
-
- com.databricks.sdk.service.sql.ResultManifest
-
@Generated public class ResultManifest extends Object
The result manifest provides schema and metadata for the result set.
-
-
Constructor Summary
Constructors Constructor Description ResultManifest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Collection<ChunkInfo>getChunks()FormatgetFormat()ResultSchemagetSchema()LonggetTotalByteCount()LonggetTotalChunkCount()LonggetTotalRowCount()inthashCode()ResultManifestsetChunks(Collection<ChunkInfo> chunks)ResultManifestsetFormat(Format format)ResultManifestsetSchema(ResultSchema schema)ResultManifestsetTotalByteCount(Long totalByteCount)ResultManifestsetTotalChunkCount(Long totalChunkCount)ResultManifestsetTotalRowCount(Long totalRowCount)StringtoString()
-
-
-
Method Detail
-
setChunks
public ResultManifest setChunks(Collection<ChunkInfo> chunks)
-
getChunks
public Collection<ChunkInfo> getChunks()
-
setFormat
public ResultManifest setFormat(Format format)
-
getFormat
public Format getFormat()
-
setSchema
public ResultManifest setSchema(ResultSchema schema)
-
getSchema
public ResultSchema getSchema()
-
setTotalByteCount
public ResultManifest setTotalByteCount(Long totalByteCount)
-
getTotalByteCount
public Long getTotalByteCount()
-
setTotalChunkCount
public ResultManifest setTotalChunkCount(Long totalChunkCount)
-
getTotalChunkCount
public Long getTotalChunkCount()
-
setTotalRowCount
public ResultManifest setTotalRowCount(Long totalRowCount)
-
getTotalRowCount
public Long getTotalRowCount()
-
-