Package com.google.privacy.dlp.v2
Interface BucketingConfig.BucketOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BucketingConfig.Bucket
,BucketingConfig.Bucket.Builder
- Enclosing class:
- BucketingConfig
public static interface BucketingConfig.BucketOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Value
getMax()
Upper bound of the range, exclusive; type must match min.ValueOrBuilder
getMaxOrBuilder()
Upper bound of the range, exclusive; type must match min.Value
getMin()
Lower bound of the range, inclusive.ValueOrBuilder
getMinOrBuilder()
Lower bound of the range, inclusive.Value
getReplacementValue()
Required.ValueOrBuilder
getReplacementValueOrBuilder()
Required.boolean
hasMax()
Upper bound of the range, exclusive; type must match min.boolean
hasMin()
Lower bound of the range, inclusive.boolean
hasReplacementValue()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMin
boolean hasMin()
Lower bound of the range, inclusive. Type should be the same as max if used.
.google.privacy.dlp.v2.Value min = 1;
- Returns:
- Whether the min field is set.
-
getMin
Value getMin()
Lower bound of the range, inclusive. Type should be the same as max if used.
.google.privacy.dlp.v2.Value min = 1;
- Returns:
- The min.
-
getMinOrBuilder
ValueOrBuilder getMinOrBuilder()
Lower bound of the range, inclusive. Type should be the same as max if used.
.google.privacy.dlp.v2.Value min = 1;
-
hasMax
boolean hasMax()
Upper bound of the range, exclusive; type must match min.
.google.privacy.dlp.v2.Value max = 2;
- Returns:
- Whether the max field is set.
-
getMax
Value getMax()
Upper bound of the range, exclusive; type must match min.
.google.privacy.dlp.v2.Value max = 2;
- Returns:
- The max.
-
getMaxOrBuilder
ValueOrBuilder getMaxOrBuilder()
Upper bound of the range, exclusive; type must match min.
.google.privacy.dlp.v2.Value max = 2;
-
hasReplacementValue
boolean hasReplacementValue()
Required. Replacement value for this bucket.
.google.privacy.dlp.v2.Value replacement_value = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the replacementValue field is set.
-
getReplacementValue
Value getReplacementValue()
Required. Replacement value for this bucket.
.google.privacy.dlp.v2.Value replacement_value = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The replacementValue.
-
getReplacementValueOrBuilder
ValueOrBuilder getReplacementValueOrBuilder()
Required. Replacement value for this bucket.
.google.privacy.dlp.v2.Value replacement_value = 3 [(.google.api.field_behavior) = REQUIRED];
-
-