Class FixedSizeBucketingConfig.Builder (3.1.4)

public static final class FixedSizeBucketingConfig.Builder extends GeneratedMessageV3.Builder<FixedSizeBucketingConfig.Builder> implements FixedSizeBucketingConfigOrBuilder

Buckets values based on fixed size ranges. The Bucketing transformation can provide all of this functionality, but requires more configuration. This message is provided as a convenience to the user for simple bucketing strategies. The transformed value will be a hyphenated string of {lower_bound}-{upper_bound}. For example, if lower_bound = 10 and upper_bound = 20, all values that are within this bucket will be replaced with "10-20". This can be used on data of type: double, long. If the bound Value type differs from the type of data being transformed, we will first attempt converting the type of the data to be transformed to match the type of the bound before comparing. See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.

Protobuf type google.privacy.dlp.v2.FixedSizeBucketingConfig

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public FixedSizeBucketingConfig.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

build()

public FixedSizeBucketingConfig build()
Returns
TypeDescription
FixedSizeBucketingConfig

buildPartial()

public FixedSizeBucketingConfig buildPartial()
Returns
TypeDescription
FixedSizeBucketingConfig

clear()

public FixedSizeBucketingConfig.Builder clear()
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

clearBucketSize()

public FixedSizeBucketingConfig.Builder clearBucketSize()

Required. 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.

double bucket_size = 3 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
FixedSizeBucketingConfig.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

public FixedSizeBucketingConfig.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
NameDescription
fieldFieldDescriptor
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

clearLowerBound()

public FixedSizeBucketingConfig.Builder clearLowerBound()

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
FixedSizeBucketingConfig.Builder

clearOneof(Descriptors.OneofDescriptor oneof)

public FixedSizeBucketingConfig.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
NameDescription
oneofOneofDescriptor
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

clearUpperBound()

public FixedSizeBucketingConfig.Builder clearUpperBound()

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
FixedSizeBucketingConfig.Builder

clone()

public FixedSizeBucketingConfig.Builder clone()
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

getBucketSize()

public double getBucketSize()

Required. 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.

double bucket_size = 3 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
double

The bucketSize.

getDefaultInstanceForType()

public FixedSizeBucketingConfig getDefaultInstanceForType()
Returns
TypeDescription
FixedSizeBucketingConfig

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
TypeDescription
Descriptor
Overrides

getLowerBound()

public Value getLowerBound()

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
Value

The lowerBound.

getLowerBoundBuilder()

public Value.Builder getLowerBoundBuilder()

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
Value.Builder

getLowerBoundOrBuilder()

public ValueOrBuilder getLowerBoundOrBuilder()

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
ValueOrBuilder

getUpperBound()

public Value getUpperBound()

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
Value

The upperBound.

getUpperBoundBuilder()

public Value.Builder getUpperBoundBuilder()

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
Value.Builder

getUpperBoundOrBuilder()

public ValueOrBuilder getUpperBoundOrBuilder()

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
ValueOrBuilder

hasLowerBound()

public boolean hasLowerBound()

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
boolean

Whether the lowerBound field is set.

hasUpperBound()

public boolean hasUpperBound()

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
boolean

Whether the upperBound field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

mergeFrom(FixedSizeBucketingConfig other)

public FixedSizeBucketingConfig.Builder mergeFrom(FixedSizeBucketingConfig other)
Parameter
NameDescription
otherFixedSizeBucketingConfig
Returns
TypeDescription
FixedSizeBucketingConfig.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public FixedSizeBucketingConfig.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides Exceptions
TypeDescription
IOException

mergeFrom(Message other)

public FixedSizeBucketingConfig.Builder mergeFrom(Message other)
Parameter
NameDescription
otherMessage
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

mergeLowerBound(Value value)

public FixedSizeBucketingConfig.Builder mergeLowerBound(Value value)

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valueValue
Returns
TypeDescription
FixedSizeBucketingConfig.Builder

mergeUnknownFields(UnknownFieldSet unknownFields)

public final FixedSizeBucketingConfig.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

mergeUpperBound(Value value)

public FixedSizeBucketingConfig.Builder mergeUpperBound(Value value)

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valueValue
Returns
TypeDescription
FixedSizeBucketingConfig.Builder

setBucketSize(double value)

public FixedSizeBucketingConfig.Builder setBucketSize(double value)

Required. 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.

double bucket_size = 3 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valuedouble

The bucketSize to set.

Returns
TypeDescription
FixedSizeBucketingConfig.Builder

This builder for chaining.

setField(Descriptors.FieldDescriptor field, Object value)

public FixedSizeBucketingConfig.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

setLowerBound(Value value)

public FixedSizeBucketingConfig.Builder setLowerBound(Value value)

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valueValue
Returns
TypeDescription
FixedSizeBucketingConfig.Builder

setLowerBound(Value.Builder builderForValue)

public FixedSizeBucketingConfig.Builder setLowerBound(Value.Builder builderForValue)

Required. 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".

.google.privacy.dlp.v2.Value lower_bound = 1 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
builderForValueValue.Builder
Returns
TypeDescription
FixedSizeBucketingConfig.Builder

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public FixedSizeBucketingConfig.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
NameDescription
fieldFieldDescriptor
indexint
valueObject
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

setUnknownFields(UnknownFieldSet unknownFields)

public final FixedSizeBucketingConfig.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
FixedSizeBucketingConfig.Builder
Overrides

setUpperBound(Value value)

public FixedSizeBucketingConfig.Builder setUpperBound(Value value)

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
valueValue
Returns
TypeDescription
FixedSizeBucketingConfig.Builder

setUpperBound(Value.Builder builderForValue)

public FixedSizeBucketingConfig.Builder setUpperBound(Value.Builder builderForValue)

Required. 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+".

.google.privacy.dlp.v2.Value upper_bound = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
NameDescription
builderForValueValue.Builder
Returns
TypeDescription
FixedSizeBucketingConfig.Builder