cz.proto.FileMetaDataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: file_meta_data.proto
package cz.proto;
public interface FileMetaDataOrBuilder extends
// @@protoc_insertion_point(interface_extends:cz.proto.FileMetaData)
com.google.protobuf.MessageOrBuilder {
/**
* optional uint32 data_source_id = 20;
* @return Whether the dataSourceId field is set.
*/
boolean hasDataSourceId();
/**
* optional uint32 data_source_id = 20;
* @return The dataSourceId.
*/
int getDataSourceId();
/**
* string file_path = 1;
* @return The filePath.
*/
java.lang.String getFilePath();
/**
* string file_path = 1;
* @return The bytes for filePath.
*/
com.google.protobuf.ByteString
getFilePathBytes();
/**
* .cz.proto.FileFormatType file_format = 2;
* @return The enum numeric value on the wire for fileFormat.
*/
int getFileFormatValue();
/**
* .cz.proto.FileFormatType file_format = 2;
* @return The fileFormat.
*/
cz.proto.FileFormatTypeOuterClass.FileFormatType getFileFormat();
/**
* .cz.proto.FileType file_type = 3;
* @return The enum numeric value on the wire for fileType.
*/
int getFileTypeValue();
/**
* .cz.proto.FileType file_type = 3;
* @return The fileType.
*/
cz.proto.FileType getFileType();
/**
* int64 file_slice_id = 4;
* @return The fileSliceId.
*/
long getFileSliceId();
/**
* optional int64 file_slice_version = 5;
* @return Whether the fileSliceVersion field is set.
*/
boolean hasFileSliceVersion();
/**
* optional int64 file_slice_version = 5;
* @return The fileSliceVersion.
*/
long getFileSliceVersion();
/**
* int32 compaction_level = 6;
* @return The compactionLevel.
*/
int getCompactionLevel();
/**
*
* TableMeta.cluster_info_spec.spec_id
*
*
* optional uint32 cluster_spec_id = 7;
* @return Whether the clusterSpecId field is set.
*/
boolean hasClusterSpecId();
/**
*
* TableMeta.cluster_info_spec.spec_id
*
*
* optional uint32 cluster_spec_id = 7;
* @return The clusterSpecId.
*/
int getClusterSpecId();
/**
*
* TableMeta.sort_order_spec.spec_id
*
*
* optional uint32 sort_order_spec_id = 8;
* @return Whether the sortOrderSpecId field is set.
*/
boolean hasSortOrderSpecId();
/**
*
* TableMeta.sort_order_spec.spec_id
*
*
* optional uint32 sort_order_spec_id = 8;
* @return The sortOrderSpecId.
*/
int getSortOrderSpecId();
/**
*
* TableMeta.primary_key_spec.spec_id
*
*
* optional uint32 primary_key_spec_id = 9;
* @return Whether the primaryKeySpecId field is set.
*/
boolean hasPrimaryKeySpecId();
/**
*
* TableMeta.primary_key_spec.spec_id
*
*
* optional uint32 primary_key_spec_id = 9;
* @return The primaryKeySpecId.
*/
int getPrimaryKeySpecId();
/**
* .cz.proto.DataLayout layout = 10;
* @return Whether the layout field is set.
*/
boolean hasLayout();
/**
* .cz.proto.DataLayout layout = 10;
* @return The layout.
*/
cz.proto.DataLayout getLayout();
/**
* .cz.proto.DataLayout layout = 10;
*/
cz.proto.DataLayoutOrBuilder getLayoutOrBuilder();
/**
* .cz.proto.ExtendedMetaData extended_metadata = 11;
* @return Whether the extendedMetadata field is set.
*/
boolean hasExtendedMetadata();
/**
* .cz.proto.ExtendedMetaData extended_metadata = 11;
* @return The extendedMetadata.
*/
cz.proto.ExtendedMetaData getExtendedMetadata();
/**
* .cz.proto.ExtendedMetaData extended_metadata = 11;
*/
cz.proto.ExtendedMetaDataOrBuilder getExtendedMetadataOrBuilder();
/**
*
* file level statistics
*
*
* .cz.proto.StatsData stats = 16;
* @return Whether the stats field is set.
*/
boolean hasStats();
/**
*
* file level statistics
*
*
* .cz.proto.StatsData stats = 16;
* @return The stats.
*/
cz.proto.StatsData getStats();
/**
*
* file level statistics
*
*
* .cz.proto.StatsData stats = 16;
*/
cz.proto.StatsDataOrBuilder getStatsOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy