Interface DataProfileResult.Profile.Field.ProfileInfo.TopNValueOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getCount()
      Count of the corresponding value in the scanned data.
      double getRatio()
      Ratio of the corresponding value in the field against the total number of rows in the scanned data.
      String getValue()
      String value of a top N non-null value.
      com.google.protobuf.ByteString getValueBytes()
      String value of a top N non-null value.
      • 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

      • getValue

        String getValue()
         String value of a top N non-null value.
         
        string value = 1;
        Returns:
        The value.
      • getValueBytes

        com.google.protobuf.ByteString getValueBytes()
         String value of a top N non-null value.
         
        string value = 1;
        Returns:
        The bytes for value.
      • getCount

        long getCount()
         Count of the corresponding value in the scanned data.
         
        int64 count = 2;
        Returns:
        The count.
      • getRatio

        double getRatio()
         Ratio of the corresponding value in the field against the total
         number of rows in the scanned data.
         
        double ratio = 3;
        Returns:
        The ratio.