Interface BytesStatisticsOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    BytesStatistics, BytesStatistics.Builder

    public interface BytesStatisticsOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      float getAvgNumBytes()
      The average number of bytes in a value
      CommonStatistics getCommonStats()
      .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
      CommonStatisticsOrBuilder getCommonStatsOrBuilder()
      .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
      float getMaxNumBytes()
      The maximum number of bytes in a value
      float getMinNumBytes()
      The minimum number of bytes in a value
      long getUnique()
      The number of unique values
      boolean hasCommonStats()
      .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasCommonStats

        boolean hasCommonStats()
        .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
        Returns:
        Whether the commonStats field is set.
      • getCommonStats

        CommonStatistics getCommonStats()
        .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
        Returns:
        The commonStats.
      • getCommonStatsOrBuilder

        CommonStatisticsOrBuilder getCommonStatsOrBuilder()
        .tensorflow.metadata.v0.CommonStatistics common_stats = 1;
      • getUnique

        long getUnique()
         The number of unique values
         
        uint64 unique = 2;
        Returns:
        The unique.
      • getAvgNumBytes

        float getAvgNumBytes()
         The average number of bytes in a value
         
        float avg_num_bytes = 3;
        Returns:
        The avgNumBytes.
      • getMinNumBytes

        float getMinNumBytes()
         The minimum number of bytes in a value
         
        float min_num_bytes = 4;
        Returns:
        The minNumBytes.
      • getMaxNumBytes

        float getMaxNumBytes()
         The maximum number of bytes in a value
         
        float max_num_bytes = 5;
        Returns:
        The maxNumBytes.