public interface FixedSizeBucketingConfigOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
double |
getBucketSize()
Size of each bucket (except for minimum and maximum buckets).
|
Value |
getLowerBound()
Lower bound value of buckets.
|
ValueOrBuilder |
getLowerBoundOrBuilder()
Lower bound value of buckets.
|
Value |
getUpperBound()
Upper bound value of buckets.
|
ValueOrBuilder |
getUpperBoundOrBuilder()
Upper bound value of buckets.
|
boolean |
hasLowerBound()
Lower bound value of buckets.
|
boolean |
hasUpperBound()
Upper bound value of buckets.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
boolean hasLowerBound()
Lower bound value of buckets. All values less than `lower_bound` are grouped together into a single bucket; for example if `lower_bound` = 10, then all values less than 10 are replaced with the value “-10”. [Required].
.google.privacy.dlp.v2.Value lower_bound = 1;
Value getLowerBound()
Lower bound value of buckets. All values less than `lower_bound` are grouped together into a single bucket; for example if `lower_bound` = 10, then all values less than 10 are replaced with the value “-10”. [Required].
.google.privacy.dlp.v2.Value lower_bound = 1;
ValueOrBuilder getLowerBoundOrBuilder()
Lower bound value of buckets. All values less than `lower_bound` are grouped together into a single bucket; for example if `lower_bound` = 10, then all values less than 10 are replaced with the value “-10”. [Required].
.google.privacy.dlp.v2.Value lower_bound = 1;
boolean hasUpperBound()
Upper bound value of buckets. All values greater than upper_bound are grouped together into a single bucket; for example if `upper_bound` = 89, then all values greater than 89 are replaced with the value “89+”. [Required].
.google.privacy.dlp.v2.Value upper_bound = 2;
Value getUpperBound()
Upper bound value of buckets. All values greater than upper_bound are grouped together into a single bucket; for example if `upper_bound` = 89, then all values greater than 89 are replaced with the value “89+”. [Required].
.google.privacy.dlp.v2.Value upper_bound = 2;
ValueOrBuilder getUpperBoundOrBuilder()
Upper bound value of buckets. All values greater than upper_bound are grouped together into a single bucket; for example if `upper_bound` = 89, then all values greater than 89 are replaced with the value “89+”. [Required].
.google.privacy.dlp.v2.Value upper_bound = 2;
double getBucketSize()
Size of each bucket (except for minimum and maximum buckets). So if `lower_bound` = 10, `upper_bound` = 89, and `bucket_size` = 10, then the following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60, 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works. [Required].
double bucket_size = 3;