Package com.google.privacy.dlp.v2
Interface ValueFrequencyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ValueFrequency
,ValueFrequency.Builder
public interface ValueFrequencyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
How many times the value is contained in the field.Value
getValue()
A value contained in the field in question.ValueOrBuilder
getValueOrBuilder()
A value contained in the field in question.boolean
hasValue()
A value contained in the field in question.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasValue
boolean hasValue()
A value contained in the field in question.
.google.privacy.dlp.v2.Value value = 1;
- Returns:
- Whether the value field is set.
-
getValue
Value getValue()
A value contained in the field in question.
.google.privacy.dlp.v2.Value value = 1;
- Returns:
- The value.
-
getValueOrBuilder
ValueOrBuilder getValueOrBuilder()
A value contained in the field in question.
.google.privacy.dlp.v2.Value value = 1;
-
getCount
long getCount()
How many times the value is contained in the field.
int64 count = 2;
- Returns:
- The count.
-
-