Package com.google.cloud.optimization.v1
Class TimeWindow.Builder
- java.lang.Object
-
- com.google.protobuf.AbstractMessageLite.Builder
-
- com.google.protobuf.AbstractMessage.Builder<BuilderT>
-
- com.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
- com.google.cloud.optimization.v1.TimeWindow.Builder
-
- All Implemented Interfaces:
TimeWindowOrBuilder,com.google.protobuf.Message.Builder,com.google.protobuf.MessageLite.Builder,com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder,Cloneable
- Enclosing class:
- TimeWindow
public static final class TimeWindow.Builder extends com.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder> implements TimeWindowOrBuilder
Time windows constrain the time of an event, such as the arrival time at a visit, or the start and end time of a vehicle. Hard time window bounds, `start_time` and `end_time`, enforce the earliest and latest time of the event, such that `start_time <= event_time <= end_time`. The soft time window lower bound, `soft_start_time`, expresses a preference for the event to happen at or after `soft_start_time` by incurring a cost proportional to how long before soft_start_time the event occurs. The soft time window upper bound, `soft_end_time`, expresses a preference for the event to happen at or before `soft_end_time` by incurring a cost proportional to how long after `soft_end_time` the event occurs. `start_time`, `end_time`, `soft_start_time` and `soft_end_time` should be within the global time limits (see [ShipmentModel.global_start_time][google.cloud.optimization.v1.ShipmentModel.global_start_time] and [ShipmentModel.global_end_time][google.cloud.optimization.v1.ShipmentModel.global_end_time]) and should respect: ``` 0 <= `start_time` <= `soft_start_time` <= `end_time` and 0 <= `start_time` <= `soft_end_time` <= `end_time`. ```
Protobuf typegoogle.cloud.optimization.v1.TimeWindow
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TimeWindow.BuilderaddRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)TimeWindowbuild()TimeWindowbuildPartial()TimeWindow.Builderclear()TimeWindow.BuilderclearCostPerHourAfterSoftEndTime()A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event.TimeWindow.BuilderclearCostPerHourBeforeSoftStartTime()A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event.TimeWindow.BuilderclearEndTime()The hard time window end time.TimeWindow.BuilderclearField(com.google.protobuf.Descriptors.FieldDescriptor field)TimeWindow.BuilderclearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)TimeWindow.BuilderclearSoftEndTime()The soft end time of the time window.TimeWindow.BuilderclearSoftStartTime()The soft start time of the time window.TimeWindow.BuilderclearStartTime()The hard time window start time.TimeWindow.Builderclone()doublegetCostPerHourAfterSoftEndTime()A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event.doublegetCostPerHourBeforeSoftStartTime()A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event.TimeWindowgetDefaultInstanceForType()static com.google.protobuf.Descriptors.DescriptorgetDescriptor()com.google.protobuf.Descriptors.DescriptorgetDescriptorForType()com.google.protobuf.TimestampgetEndTime()The hard time window end time.com.google.protobuf.Timestamp.BuildergetEndTimeBuilder()The hard time window end time.com.google.protobuf.TimestampOrBuildergetEndTimeOrBuilder()The hard time window end time.com.google.protobuf.TimestampgetSoftEndTime()The soft end time of the time window.com.google.protobuf.Timestamp.BuildergetSoftEndTimeBuilder()The soft end time of the time window.com.google.protobuf.TimestampOrBuildergetSoftEndTimeOrBuilder()The soft end time of the time window.com.google.protobuf.TimestampgetSoftStartTime()The soft start time of the time window.com.google.protobuf.Timestamp.BuildergetSoftStartTimeBuilder()The soft start time of the time window.com.google.protobuf.TimestampOrBuildergetSoftStartTimeOrBuilder()The soft start time of the time window.com.google.protobuf.TimestampgetStartTime()The hard time window start time.com.google.protobuf.Timestamp.BuildergetStartTimeBuilder()The hard time window start time.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()The hard time window start time.booleanhasCostPerHourAfterSoftEndTime()A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event.booleanhasCostPerHourBeforeSoftStartTime()A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event.booleanhasEndTime()The hard time window end time.booleanhasSoftEndTime()The soft end time of the time window.booleanhasSoftStartTime()The soft start time of the time window.booleanhasStartTime()The hard time window start time.protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTableinternalGetFieldAccessorTable()booleanisInitialized()TimeWindow.BuildermergeEndTime(com.google.protobuf.Timestamp value)The hard time window end time.TimeWindow.BuildermergeFrom(TimeWindow other)TimeWindow.BuildermergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)TimeWindow.BuildermergeFrom(com.google.protobuf.Message other)TimeWindow.BuildermergeSoftEndTime(com.google.protobuf.Timestamp value)The soft end time of the time window.TimeWindow.BuildermergeSoftStartTime(com.google.protobuf.Timestamp value)The soft start time of the time window.TimeWindow.BuildermergeStartTime(com.google.protobuf.Timestamp value)The hard time window start time.TimeWindow.BuildermergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)TimeWindow.BuildersetCostPerHourAfterSoftEndTime(double value)A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event.TimeWindow.BuildersetCostPerHourBeforeSoftStartTime(double value)A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event.TimeWindow.BuildersetEndTime(com.google.protobuf.Timestamp value)The hard time window end time.TimeWindow.BuildersetEndTime(com.google.protobuf.Timestamp.Builder builderForValue)The hard time window end time.TimeWindow.BuildersetField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)TimeWindow.BuildersetRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value)TimeWindow.BuildersetSoftEndTime(com.google.protobuf.Timestamp value)The soft end time of the time window.TimeWindow.BuildersetSoftEndTime(com.google.protobuf.Timestamp.Builder builderForValue)The soft end time of the time window.TimeWindow.BuildersetSoftStartTime(com.google.protobuf.Timestamp value)The soft start time of the time window.TimeWindow.BuildersetSoftStartTime(com.google.protobuf.Timestamp.Builder builderForValue)The soft start time of the time window.TimeWindow.BuildersetStartTime(com.google.protobuf.Timestamp value)The hard time window start time.TimeWindow.BuildersetStartTime(com.google.protobuf.Timestamp.Builder builderForValue)The hard time window start time.TimeWindow.BuildersetUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)-
Methods inherited from class com.google.protobuf.GeneratedMessageV3.Builder
getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, getUnknownFieldSetBuilder, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, mergeUnknownLengthDelimitedField, mergeUnknownVarintField, newBuilderForField, onBuilt, onChanged, parseUnknownField, setUnknownFieldSetBuilder, setUnknownFieldsProto3
-
Methods inherited from class com.google.protobuf.AbstractMessage.Builder
findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
addAll, addAll, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, newUninitializedMessageException
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
getDescriptor
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
-
internalGetFieldAccessorTable
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
- Specified by:
internalGetFieldAccessorTablein classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
clear
public TimeWindow.Builder clear()
- Specified by:
clearin interfacecom.google.protobuf.Message.Builder- Specified by:
clearin interfacecom.google.protobuf.MessageLite.Builder- Overrides:
clearin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
getDescriptorForType
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.Message.Builder- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.MessageOrBuilder- Overrides:
getDescriptorForTypein classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
getDefaultInstanceForType
public TimeWindow getDefaultInstanceForType()
- Specified by:
getDefaultInstanceForTypein interfacecom.google.protobuf.MessageLiteOrBuilder- Specified by:
getDefaultInstanceForTypein interfacecom.google.protobuf.MessageOrBuilder
-
build
public TimeWindow build()
- Specified by:
buildin interfacecom.google.protobuf.Message.Builder- Specified by:
buildin interfacecom.google.protobuf.MessageLite.Builder
-
buildPartial
public TimeWindow buildPartial()
- Specified by:
buildPartialin interfacecom.google.protobuf.Message.Builder- Specified by:
buildPartialin interfacecom.google.protobuf.MessageLite.Builder
-
clone
public TimeWindow.Builder clone()
- Specified by:
clonein interfacecom.google.protobuf.Message.Builder- Specified by:
clonein interfacecom.google.protobuf.MessageLite.Builder- Overrides:
clonein classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
setField
public TimeWindow.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
- Specified by:
setFieldin interfacecom.google.protobuf.Message.Builder- Overrides:
setFieldin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
clearField
public TimeWindow.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
- Specified by:
clearFieldin interfacecom.google.protobuf.Message.Builder- Overrides:
clearFieldin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
clearOneof
public TimeWindow.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
- Specified by:
clearOneofin interfacecom.google.protobuf.Message.Builder- Overrides:
clearOneofin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
setRepeatedField
public TimeWindow.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value)
- Specified by:
setRepeatedFieldin interfacecom.google.protobuf.Message.Builder- Overrides:
setRepeatedFieldin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
addRepeatedField
public TimeWindow.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
- Specified by:
addRepeatedFieldin interfacecom.google.protobuf.Message.Builder- Overrides:
addRepeatedFieldin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
mergeFrom
public TimeWindow.Builder mergeFrom(com.google.protobuf.Message other)
- Specified by:
mergeFromin interfacecom.google.protobuf.Message.Builder- Overrides:
mergeFromin classcom.google.protobuf.AbstractMessage.Builder<TimeWindow.Builder>
-
mergeFrom
public TimeWindow.Builder mergeFrom(TimeWindow other)
-
isInitialized
public final boolean isInitialized()
- Specified by:
isInitializedin interfacecom.google.protobuf.MessageLiteOrBuilder- Overrides:
isInitializedin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
mergeFrom
public TimeWindow.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
- Specified by:
mergeFromin interfacecom.google.protobuf.Message.Builder- Specified by:
mergeFromin interfacecom.google.protobuf.MessageLite.Builder- Overrides:
mergeFromin classcom.google.protobuf.AbstractMessage.Builder<TimeWindow.Builder>- Throws:
IOException
-
hasStartTime
public boolean hasStartTime()
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;- Specified by:
hasStartTimein interfaceTimeWindowOrBuilder- Returns:
- Whether the startTime field is set.
-
getStartTime
public com.google.protobuf.Timestamp getStartTime()
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;- Specified by:
getStartTimein interfaceTimeWindowOrBuilder- Returns:
- The startTime.
-
setStartTime
public TimeWindow.Builder setStartTime(com.google.protobuf.Timestamp value)
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;
-
setStartTime
public TimeWindow.Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValue)
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;
-
mergeStartTime
public TimeWindow.Builder mergeStartTime(com.google.protobuf.Timestamp value)
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;
-
clearStartTime
public TimeWindow.Builder clearStartTime()
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;
-
getStartTimeBuilder
public com.google.protobuf.Timestamp.Builder getStartTimeBuilder()
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;
-
getStartTimeOrBuilder
public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
The hard time window start time. If unspecified it will be set to `ShipmentModel.global_start_time`.
.google.protobuf.Timestamp start_time = 1;- Specified by:
getStartTimeOrBuilderin interfaceTimeWindowOrBuilder
-
hasEndTime
public boolean hasEndTime()
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;- Specified by:
hasEndTimein interfaceTimeWindowOrBuilder- Returns:
- Whether the endTime field is set.
-
getEndTime
public com.google.protobuf.Timestamp getEndTime()
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;- Specified by:
getEndTimein interfaceTimeWindowOrBuilder- Returns:
- The endTime.
-
setEndTime
public TimeWindow.Builder setEndTime(com.google.protobuf.Timestamp value)
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;
-
setEndTime
public TimeWindow.Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue)
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;
-
mergeEndTime
public TimeWindow.Builder mergeEndTime(com.google.protobuf.Timestamp value)
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;
-
clearEndTime
public TimeWindow.Builder clearEndTime()
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;
-
getEndTimeBuilder
public com.google.protobuf.Timestamp.Builder getEndTimeBuilder()
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;
-
getEndTimeOrBuilder
public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
The hard time window end time. If unspecified it will be set to `ShipmentModel.global_end_time`.
.google.protobuf.Timestamp end_time = 2;- Specified by:
getEndTimeOrBuilderin interfaceTimeWindowOrBuilder
-
hasSoftStartTime
public boolean hasSoftStartTime()
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;- Specified by:
hasSoftStartTimein interfaceTimeWindowOrBuilder- Returns:
- Whether the softStartTime field is set.
-
getSoftStartTime
public com.google.protobuf.Timestamp getSoftStartTime()
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;- Specified by:
getSoftStartTimein interfaceTimeWindowOrBuilder- Returns:
- The softStartTime.
-
setSoftStartTime
public TimeWindow.Builder setSoftStartTime(com.google.protobuf.Timestamp value)
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;
-
setSoftStartTime
public TimeWindow.Builder setSoftStartTime(com.google.protobuf.Timestamp.Builder builderForValue)
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;
-
mergeSoftStartTime
public TimeWindow.Builder mergeSoftStartTime(com.google.protobuf.Timestamp value)
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;
-
clearSoftStartTime
public TimeWindow.Builder clearSoftStartTime()
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;
-
getSoftStartTimeBuilder
public com.google.protobuf.Timestamp.Builder getSoftStartTimeBuilder()
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;
-
getSoftStartTimeOrBuilder
public com.google.protobuf.TimestampOrBuilder getSoftStartTimeOrBuilder()
The soft start time of the time window.
.google.protobuf.Timestamp soft_start_time = 3;- Specified by:
getSoftStartTimeOrBuilderin interfaceTimeWindowOrBuilder
-
hasSoftEndTime
public boolean hasSoftEndTime()
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;- Specified by:
hasSoftEndTimein interfaceTimeWindowOrBuilder- Returns:
- Whether the softEndTime field is set.
-
getSoftEndTime
public com.google.protobuf.Timestamp getSoftEndTime()
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;- Specified by:
getSoftEndTimein interfaceTimeWindowOrBuilder- Returns:
- The softEndTime.
-
setSoftEndTime
public TimeWindow.Builder setSoftEndTime(com.google.protobuf.Timestamp value)
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;
-
setSoftEndTime
public TimeWindow.Builder setSoftEndTime(com.google.protobuf.Timestamp.Builder builderForValue)
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;
-
mergeSoftEndTime
public TimeWindow.Builder mergeSoftEndTime(com.google.protobuf.Timestamp value)
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;
-
clearSoftEndTime
public TimeWindow.Builder clearSoftEndTime()
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;
-
getSoftEndTimeBuilder
public com.google.protobuf.Timestamp.Builder getSoftEndTimeBuilder()
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;
-
getSoftEndTimeOrBuilder
public com.google.protobuf.TimestampOrBuilder getSoftEndTimeOrBuilder()
The soft end time of the time window.
.google.protobuf.Timestamp soft_end_time = 4;- Specified by:
getSoftEndTimeOrBuilderin interfaceTimeWindowOrBuilder
-
hasCostPerHourBeforeSoftStartTime
public boolean hasCostPerHourBeforeSoftStartTime()
A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if soft_start_time has been set.optional double cost_per_hour_before_soft_start_time = 5;- Specified by:
hasCostPerHourBeforeSoftStartTimein interfaceTimeWindowOrBuilder- Returns:
- Whether the costPerHourBeforeSoftStartTime field is set.
-
getCostPerHourBeforeSoftStartTime
public double getCostPerHourBeforeSoftStartTime()
A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if soft_start_time has been set.optional double cost_per_hour_before_soft_start_time = 5;- Specified by:
getCostPerHourBeforeSoftStartTimein interfaceTimeWindowOrBuilder- Returns:
- The costPerHourBeforeSoftStartTime.
-
setCostPerHourBeforeSoftStartTime
public TimeWindow.Builder setCostPerHourBeforeSoftStartTime(double value)
A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if soft_start_time has been set.optional double cost_per_hour_before_soft_start_time = 5;- Parameters:
value- The costPerHourBeforeSoftStartTime to set.- Returns:
- This builder for chaining.
-
clearCostPerHourBeforeSoftStartTime
public TimeWindow.Builder clearCostPerHourBeforeSoftStartTime()
A cost per hour added to other costs in the model if the event occurs before soft_start_time, computed as: ``` max(0, soft_start_time - t.seconds) * cost_per_hour_before_soft_start_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if soft_start_time has been set.optional double cost_per_hour_before_soft_start_time = 5;- Returns:
- This builder for chaining.
-
hasCostPerHourAfterSoftEndTime
public boolean hasCostPerHourAfterSoftEndTime()
A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if `soft_end_time` has been set.optional double cost_per_hour_after_soft_end_time = 6;- Specified by:
hasCostPerHourAfterSoftEndTimein interfaceTimeWindowOrBuilder- Returns:
- Whether the costPerHourAfterSoftEndTime field is set.
-
getCostPerHourAfterSoftEndTime
public double getCostPerHourAfterSoftEndTime()
A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if `soft_end_time` has been set.optional double cost_per_hour_after_soft_end_time = 6;- Specified by:
getCostPerHourAfterSoftEndTimein interfaceTimeWindowOrBuilder- Returns:
- The costPerHourAfterSoftEndTime.
-
setCostPerHourAfterSoftEndTime
public TimeWindow.Builder setCostPerHourAfterSoftEndTime(double value)
A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if `soft_end_time` has been set.optional double cost_per_hour_after_soft_end_time = 6;- Parameters:
value- The costPerHourAfterSoftEndTime to set.- Returns:
- This builder for chaining.
-
clearCostPerHourAfterSoftEndTime
public TimeWindow.Builder clearCostPerHourAfterSoftEndTime()
A cost per hour added to other costs in the model if the event occurs after `soft_end_time`, computed as: ``` max(0, t.seconds - soft_end_time.seconds) * cost_per_hour_after_soft_end_time / 3600, t being the time of the event. ``` This cost must be positive, and the field can only be set if `soft_end_time` has been set.optional double cost_per_hour_after_soft_end_time = 6;- Returns:
- This builder for chaining.
-
setUnknownFields
public final TimeWindow.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
- Specified by:
setUnknownFieldsin interfacecom.google.protobuf.Message.Builder- Overrides:
setUnknownFieldsin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
mergeUnknownFields
public final TimeWindow.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
- Specified by:
mergeUnknownFieldsin interfacecom.google.protobuf.Message.Builder- Overrides:
mergeUnknownFieldsin classcom.google.protobuf.GeneratedMessageV3.Builder<TimeWindow.Builder>
-
-