Package com.google.cloud.dataplex.v1
Interface DataProfileResult.Profile.Field.ProfileInfo.TopNValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataProfileResult.Profile.Field.ProfileInfo.TopNValue
,DataProfileResult.Profile.Field.ProfileInfo.TopNValue.Builder
- Enclosing class:
- DataProfileResult.Profile.Field.ProfileInfo
public static interface DataProfileResult.Profile.Field.ProfileInfo.TopNValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
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.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.
-
-