Class DistanceLimit.Builder (1.20.0)

publicstaticfinalclass DistanceLimit.BuilderextendsGeneratedMessageV3.Builder<DistanceLimit.Builder>implementsDistanceLimitOrBuilder

A limit defining a maximum distance which can be traveled. It can be either hard or soft.

If a soft limit is defined, both soft_max_meters and cost_per_kilometer_above_soft_max must be defined and be nonnegative.

Protobuf type google.cloud.optimization.v1.DistanceLimit

Inherited Members

com.google.protobuf.GeneratedMessageV3.Builder.getUnknownFieldSetBuilder()
com.google.protobuf.GeneratedMessageV3.Builder.mergeUnknownLengthDelimitedField(int,com.google.protobuf.ByteString)
com.google.protobuf.GeneratedMessageV3.Builder.mergeUnknownVarintField(int,int)
com.google.protobuf.GeneratedMessageV3.Builder.parseUnknownField(com.google.protobuf.CodedInputStream,com.google.protobuf.ExtensionRegistryLite,int)
com.google.protobuf.GeneratedMessageV3.Builder.setUnknownFieldSetBuilder(com.google.protobuf.UnknownFieldSet.Builder)

Static Methods

getDescriptor()

publicstaticfinalDescriptors.DescriptorgetDescriptor()
Returns
Type Description
Descriptor

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

publicDistanceLimit.BuilderaddRepeatedField(Descriptors.FieldDescriptorfield,Objectvalue)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
DistanceLimit.Builder
Overrides

build()

publicDistanceLimitbuild()
Returns
Type Description
DistanceLimit

buildPartial()

publicDistanceLimitbuildPartial()
Returns
Type Description
DistanceLimit

clear()

publicDistanceLimit.Builderclear()
Returns
Type Description
DistanceLimit.Builder
Overrides

clearCostPerKilometerAboveSoftMax()

publicDistanceLimit.BuilderclearCostPerKilometerAboveSoftMax()

Cost per kilometer incurred if distance is above soft_max_meters limit. The additional cost is 0 if the distance is under the limit, otherwise the formula used to compute the cost is the following: <code><code> (distance_meters - soft_max_meters) / 1000.0 * cost_per_kilometer_above_soft_max. </code></code> The cost must be nonnegative.

optional double cost_per_kilometer_above_soft_max = 3;

Returns
Type Description
DistanceLimit.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

publicDistanceLimit.BuilderclearField(Descriptors.FieldDescriptorfield)
Parameter
Name Description
field FieldDescriptor
Returns
Type Description
DistanceLimit.Builder
Overrides

clearMaxMeters()

publicDistanceLimit.BuilderclearMaxMeters()

A hard limit constraining the distance to be at most max_meters. The limit must be nonnegative.

optional int64 max_meters = 1;

Returns
Type Description
DistanceLimit.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

publicDistanceLimit.BuilderclearOneof(Descriptors.OneofDescriptoroneof)
Parameter
Name Description
oneof OneofDescriptor
Returns
Type Description
DistanceLimit.Builder
Overrides

clearSoftMaxMeters()

publicDistanceLimit.BuilderclearSoftMaxMeters()

A soft limit not enforcing a maximum distance limit, but when violated results in a cost which adds up to other costs defined in the model, with the same unit.

If defined soft_max_meters must be less than max_meters and must be nonnegative.

optional int64 soft_max_meters = 2;

Returns
Type Description
DistanceLimit.Builder

This builder for chaining.

clone()

publicDistanceLimit.Builderclone()
Returns
Type Description
DistanceLimit.Builder
Overrides

getCostPerKilometerAboveSoftMax()

publicdoublegetCostPerKilometerAboveSoftMax()

Cost per kilometer incurred if distance is above soft_max_meters limit. The additional cost is 0 if the distance is under the limit, otherwise the formula used to compute the cost is the following: <code><code> (distance_meters - soft_max_meters) / 1000.0 * cost_per_kilometer_above_soft_max. </code></code> The cost must be nonnegative.

optional double cost_per_kilometer_above_soft_max = 3;

Returns
Type Description
double

The costPerKilometerAboveSoftMax.

getDefaultInstanceForType()

publicDistanceLimitgetDefaultInstanceForType()
Returns
Type Description
DistanceLimit

getDescriptorForType()

publicDescriptors.DescriptorgetDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getMaxMeters()

publiclonggetMaxMeters()

A hard limit constraining the distance to be at most max_meters. The limit must be nonnegative.

optional int64 max_meters = 1;

Returns
Type Description
long

The maxMeters.

getSoftMaxMeters()

publiclonggetSoftMaxMeters()

A soft limit not enforcing a maximum distance limit, but when violated results in a cost which adds up to other costs defined in the model, with the same unit.

If defined soft_max_meters must be less than max_meters and must be nonnegative.

optional int64 soft_max_meters = 2;

Returns
Type Description
long

The softMaxMeters.

hasCostPerKilometerAboveSoftMax()

publicbooleanhasCostPerKilometerAboveSoftMax()

Cost per kilometer incurred if distance is above soft_max_meters limit. The additional cost is 0 if the distance is under the limit, otherwise the formula used to compute the cost is the following: <code><code> (distance_meters - soft_max_meters) / 1000.0 * cost_per_kilometer_above_soft_max. </code></code> The cost must be nonnegative.

optional double cost_per_kilometer_above_soft_max = 3;

Returns
Type Description
boolean

Whether the costPerKilometerAboveSoftMax field is set.

hasMaxMeters()

publicbooleanhasMaxMeters()

A hard limit constraining the distance to be at most max_meters. The limit must be nonnegative.

optional int64 max_meters = 1;

Returns
Type Description
boolean

Whether the maxMeters field is set.

hasSoftMaxMeters()

publicbooleanhasSoftMaxMeters()

A soft limit not enforcing a maximum distance limit, but when violated results in a cost which adds up to other costs defined in the model, with the same unit.

If defined soft_max_meters must be less than max_meters and must be nonnegative.

optional int64 soft_max_meters = 2;

Returns
Type Description
boolean

Whether the softMaxMeters field is set.

internalGetFieldAccessorTable()

protectedGeneratedMessageV3.FieldAccessorTableinternalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

publicfinalbooleanisInitialized()
Returns
Type Description
boolean
Overrides

mergeFrom(DistanceLimit other)

publicDistanceLimit.BuildermergeFrom(DistanceLimitother)
Parameter
Name Description
other DistanceLimit
Returns
Type Description
DistanceLimit.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

publicDistanceLimit.BuildermergeFrom(CodedInputStreaminput,ExtensionRegistryLiteextensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
DistanceLimit.Builder
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

publicDistanceLimit.BuildermergeFrom(Messageother)
Parameter
Name Description
other Message
Returns
Type Description
DistanceLimit.Builder
Overrides

mergeUnknownFields(UnknownFieldSet unknownFields)

publicfinalDistanceLimit.BuildermergeUnknownFields(UnknownFieldSetunknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
DistanceLimit.Builder
Overrides

setCostPerKilometerAboveSoftMax(double value)

publicDistanceLimit.BuildersetCostPerKilometerAboveSoftMax(doublevalue)

Cost per kilometer incurred if distance is above soft_max_meters limit. The additional cost is 0 if the distance is under the limit, otherwise the formula used to compute the cost is the following: <code><code> (distance_meters - soft_max_meters) / 1000.0 * cost_per_kilometer_above_soft_max. </code></code> The cost must be nonnegative.

optional double cost_per_kilometer_above_soft_max = 3;

Parameter
Name Description
value double

The costPerKilometerAboveSoftMax to set.

Returns
Type Description
DistanceLimit.Builder

This builder for chaining.

setField(Descriptors.FieldDescriptor field, Object value)

publicDistanceLimit.BuildersetField(Descriptors.FieldDescriptorfield,Objectvalue)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
DistanceLimit.Builder
Overrides

setMaxMeters(long value)

publicDistanceLimit.BuildersetMaxMeters(longvalue)

A hard limit constraining the distance to be at most max_meters. The limit must be nonnegative.

optional int64 max_meters = 1;

Parameter
Name Description
value long

The maxMeters to set.

Returns
Type Description
DistanceLimit.Builder

This builder for chaining.

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

publicDistanceLimit.BuildersetRepeatedField(Descriptors.FieldDescriptorfield,intindex,Objectvalue)
Parameters
Name Description
field FieldDescriptor
index int
value Object
Returns
Type Description
DistanceLimit.Builder
Overrides

setSoftMaxMeters(long value)

publicDistanceLimit.BuildersetSoftMaxMeters(longvalue)

A soft limit not enforcing a maximum distance limit, but when violated results in a cost which adds up to other costs defined in the model, with the same unit.

If defined soft_max_meters must be less than max_meters and must be nonnegative.

optional int64 soft_max_meters = 2;

Parameter
Name Description
value long

The softMaxMeters to set.

Returns
Type Description
DistanceLimit.Builder

This builder for chaining.

setUnknownFields(UnknownFieldSet unknownFields)

publicfinalDistanceLimit.BuildersetUnknownFields(UnknownFieldSetunknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
DistanceLimit.Builder
Overrides

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年10月30日 UTC.