Interface HistogramOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Histogram.Bucket getBuckets​(int index)
      A list of buckets in the histogram, sorted from lowest bucket to highest bucket.
      int getBucketsCount()
      A list of buckets in the histogram, sorted from lowest bucket to highest bucket.
      List<Histogram.Bucket> getBucketsList()
      A list of buckets in the histogram, sorted from lowest bucket to highest bucket.
      Histogram.BucketOrBuilder getBucketsOrBuilder​(int index)
      A list of buckets in the histogram, sorted from lowest bucket to highest bucket.
      List<? extends Histogram.BucketOrBuilder> getBucketsOrBuilderList()
      A list of buckets in the histogram, sorted from lowest bucket to highest bucket.
      String getName()
      An optional descriptive name of the histogram, to be used for labeling.
      com.google.protobuf.ByteString getNameBytes()
      An optional descriptive name of the histogram, to be used for labeling.
      long getNumNan()
      The number of NaN values in the dataset.
      long getNumUndefined()
      The number of undefined values in the dataset.
      Histogram.HistogramType getType()
      The type of the histogram.
      int getTypeValue()
      The type of the histogram.
      • 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

      • getNumNan

        long getNumNan()
         The number of NaN values in the dataset.
         
        uint64 num_nan = 1;
        Returns:
        The numNan.
      • getNumUndefined

        long getNumUndefined()
         The number of undefined values in the dataset.
         
        uint64 num_undefined = 2;
        Returns:
        The numUndefined.
      • getBucketsList

        List<Histogram.Bucket> getBucketsList()
         A list of buckets in the histogram, sorted from lowest bucket to highest
         bucket.
         
        repeated .tensorflow.metadata.v0.Histogram.Bucket buckets = 3;
      • getBuckets

        Histogram.Bucket getBuckets​(int index)
         A list of buckets in the histogram, sorted from lowest bucket to highest
         bucket.
         
        repeated .tensorflow.metadata.v0.Histogram.Bucket buckets = 3;
      • getBucketsCount

        int getBucketsCount()
         A list of buckets in the histogram, sorted from lowest bucket to highest
         bucket.
         
        repeated .tensorflow.metadata.v0.Histogram.Bucket buckets = 3;
      • getBucketsOrBuilderList

        List<? extends Histogram.BucketOrBuilder> getBucketsOrBuilderList()
         A list of buckets in the histogram, sorted from lowest bucket to highest
         bucket.
         
        repeated .tensorflow.metadata.v0.Histogram.Bucket buckets = 3;
      • getBucketsOrBuilder

        Histogram.BucketOrBuilder getBucketsOrBuilder​(int index)
         A list of buckets in the histogram, sorted from lowest bucket to highest
         bucket.
         
        repeated .tensorflow.metadata.v0.Histogram.Bucket buckets = 3;
      • getTypeValue

        int getTypeValue()
         The type of the histogram.
         
        .tensorflow.metadata.v0.Histogram.HistogramType type = 4;
        Returns:
        The enum numeric value on the wire for type.
      • getType

        Histogram.HistogramType getType()
         The type of the histogram.
         
        .tensorflow.metadata.v0.Histogram.HistogramType type = 4;
        Returns:
        The type.
      • getName

        String getName()
         An optional descriptive name of the histogram, to be used for labeling.
         
        string name = 5;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         An optional descriptive name of the histogram, to be used for labeling.
         
        string name = 5;
        Returns:
        The bytes for name.