org.tensorflow.metadata.v0.BytesStatisticsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow_metadata/proto/v0/statistics.proto
// Protobuf Java Version: 3.25.4
package org.tensorflow.metadata.v0;
public interface BytesStatisticsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.metadata.v0.BytesStatistics)
com.google.protobuf.MessageOrBuilder {
/**
* .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
* @return Whether the commonStats field is set.
*/
boolean hasCommonStats();
/**
* .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
* @return The commonStats.
*/
org.tensorflow.metadata.v0.CommonStatistics getCommonStats();
/**
* .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
*/
org.tensorflow.metadata.v0.CommonStatisticsOrBuilder getCommonStatsOrBuilder();
/**
*
* The number of unique values
*
*
* uint64 unique = 2;
* @return The unique.
*/
long getUnique();
/**
*
* The average number of bytes in a value
*
*
* float avg_num_bytes = 3;
* @return The avgNumBytes.
*/
float getAvgNumBytes();
/**
*
* The minimum number of bytes in a value
*
*
* float min_num_bytes = 4;
* @return The minNumBytes.
*/
float getMinNumBytes();
/**
*
* The maximum number of bytes in a value
*
*
* float max_num_bytes = 5;
* @return The maxNumBytes.
*/
float getMaxNumBytes();
/**
*
* The maximum number of bytes in a value, as an int. Float will start having
* a loss of precision for a large enough integer. This field preserves the
* precision.
*
*
* int64 max_num_bytes_int = 6;
* @return The maxNumBytesInt.
*/
long getMaxNumBytesInt();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy