Java Reference

Java Reference

RegularLimitParameters.java
Go to the documentation of this file.
1// Generated by the protocol buffer compiler. DO NOT EDIT!
2// source: ortools/constraint_solver/search_limit.proto
3
4package com.google.ortools.constraintsolver;
5
14public final class RegularLimitParameters extends
15 com.google.protobuf.GeneratedMessageV3 implements
16 // @@protoc_insertion_point(message_implements:operations_research.RegularLimitParameters)
18private static final long serialVersionUID = 0L;
19 // Use RegularLimitParameters.newBuilder() to construct.
20 private RegularLimitParameters(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
21 super(builder);
22 }
23 private RegularLimitParameters() {
24 }
25
26 @java.lang.Override
27 @SuppressWarnings({"unused"})
28 protected java.lang.Object newInstance(
29 UnusedPrivateParameter unused) {
30 return new RegularLimitParameters();
31 }
32
33 @java.lang.Override
34 public final com.google.protobuf.UnknownFieldSet
36 return this.unknownFields;
37 }
39 com.google.protobuf.CodedInputStream input,
40 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
41 throws com.google.protobuf.InvalidProtocolBufferException {
42 this();
43 if (extensionRegistry == null) {
44 throw new java.lang.NullPointerException();
45 }
46 com.google.protobuf.UnknownFieldSet.Builder unknownFields =
47 com.google.protobuf.UnknownFieldSet.newBuilder();
48 try {
49 boolean done = false;
50 while (!done) {
51 int tag = input.readTag();
52 switch (tag) {
53 case 0:
54 done = true;
55 break;
56 case 8: {
57
58 time_ = input.readInt64();
59 break;
60 }
61 case 16: {
62
63 branches_ = input.readInt64();
64 break;
65 }
66 case 24: {
67
68 failures_ = input.readInt64();
69 break;
70 }
71 case 32: {
72
73 solutions_ = input.readInt64();
74 break;
75 }
76 case 40: {
77
78 smartTimeCheck_ = input.readBool();
79 break;
80 }
81 case 48: {
82
83 cumulative_ = input.readBool();
84 break;
85 }
86 default: {
87 if (!parseUnknownField(
88 input, unknownFields, extensionRegistry, tag)) {
89 done = true;
90 }
91 break;
92 }
93 }
94 }
95 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
96 throw e.setUnfinishedMessage(this);
97 } catch (java.io.IOException e) {
98 throw new com.google.protobuf.InvalidProtocolBufferException(
99 e).setUnfinishedMessage(this);
100 } finally {
101 this.unknownFields = unknownFields.build();
102 makeExtensionsImmutable();
103 }
104 }
105 public static final com.google.protobuf.Descriptors.Descriptor
107 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
108 }
109
110 @java.lang.Override
111 protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
113 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_fieldAccessorTable
114 .ensureFieldAccessorsInitialized(
115 com.google.ortools.constraintsolver.RegularLimitParameters.class, com.google.ortools.constraintsolver.RegularLimitParameters.Builder.class);
116 }
117
118 public static final int TIME_FIELD_NUMBER = 1;
119 private long time_;
128 @java.lang.Override
129 public long getTime() {
130 return time_;
131 }
132
133 public static final int BRANCHES_FIELD_NUMBER = 2;
134 private long branches_;
139 @java.lang.Override
140 public long getBranches() {
141 return branches_;
142 }
143
144 public static final int FAILURES_FIELD_NUMBER = 3;
145 private long failures_;
150 @java.lang.Override
151 public long getFailures() {
152 return failures_;
153 }
154
155 public static final int SOLUTIONS_FIELD_NUMBER = 4;
156 private long solutions_;
161 @java.lang.Override
162 public long getSolutions() {
163 return solutions_;
164 }
165
166 public static final int SMART_TIME_CHECK_FIELD_NUMBER = 5;
167 private boolean smartTimeCheck_;
172 @java.lang.Override
173 public boolean getSmartTimeCheck() {
174 return smartTimeCheck_;
175 }
176
177 public static final int CUMULATIVE_FIELD_NUMBER = 6;
178 private boolean cumulative_;
183 @java.lang.Override
184 public boolean getCumulative() {
185 return cumulative_;
186 }
187
188 private byte memoizedIsInitialized = -1;
189 @java.lang.Override
190 public final boolean isInitialized() {
191 byte isInitialized = memoizedIsInitialized;
192 if (isInitialized == 1) return true;
193 if (isInitialized == 0) return false;
194
195 memoizedIsInitialized = 1;
196 return true;
197 }
198
199 @java.lang.Override
200 public void writeTo(com.google.protobuf.CodedOutputStream output)
201 throws java.io.IOException {
202 if (time_ != 0L) {
203 output.writeInt64(1, time_);
204 }
205 if (branches_ != 0L) {
206 output.writeInt64(2, branches_);
207 }
208 if (failures_ != 0L) {
209 output.writeInt64(3, failures_);
210 }
211 if (solutions_ != 0L) {
212 output.writeInt64(4, solutions_);
213 }
214 if (smartTimeCheck_ != false) {
215 output.writeBool(5, smartTimeCheck_);
216 }
217 if (cumulative_ != false) {
218 output.writeBool(6, cumulative_);
219 }
220 unknownFields.writeTo(output);
221 }
222
223 @java.lang.Override
224 public int getSerializedSize() {
225 int size = memoizedSize;
226 if (size != -1) return size;
227
228 size = 0;
229 if (time_ != 0L) {
230 size += com.google.protobuf.CodedOutputStream
231 .computeInt64Size(1, time_);
232 }
233 if (branches_ != 0L) {
234 size += com.google.protobuf.CodedOutputStream
235 .computeInt64Size(2, branches_);
236 }
237 if (failures_ != 0L) {
238 size += com.google.protobuf.CodedOutputStream
239 .computeInt64Size(3, failures_);
240 }
241 if (solutions_ != 0L) {
242 size += com.google.protobuf.CodedOutputStream
243 .computeInt64Size(4, solutions_);
244 }
245 if (smartTimeCheck_ != false) {
246 size += com.google.protobuf.CodedOutputStream
247 .computeBoolSize(5, smartTimeCheck_);
248 }
249 if (cumulative_ != false) {
250 size += com.google.protobuf.CodedOutputStream
251 .computeBoolSize(6, cumulative_);
252 }
253 size += unknownFields.getSerializedSize();
254 memoizedSize = size;
255 return size;
256 }
257
258 @java.lang.Override
259 public boolean equals(final java.lang.Object obj) {
260 if (obj == this) {
261 return true;
262 }
263 if (!(obj instanceof com.google.ortools.constraintsolver.RegularLimitParameters)) {
264 return super.equals(obj);
265 }
266 com.google.ortools.constraintsolver.RegularLimitParameters other = (com.google.ortools.constraintsolver.RegularLimitParameters) obj;
267
268 if (getTime()
269 != other.getTime()) return false;
270 if (getBranches()
271 != other.getBranches()) return false;
272 if (getFailures()
273 != other.getFailures()) return false;
274 if (getSolutions()
275 != other.getSolutions()) return false;
277 != other.getSmartTimeCheck()) return false;
278 if (getCumulative()
279 != other.getCumulative()) return false;
280 if (!unknownFields.equals(other.unknownFields)) return false;
281 return true;
282 }
283
284 @java.lang.Override
285 public int hashCode() {
286 if (memoizedHashCode != 0) {
287 return memoizedHashCode;
288 }
289 int hash = 41;
290 hash = (19 * hash) + getDescriptor().hashCode();
291 hash = (37 * hash) + TIME_FIELD_NUMBER;
292 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
293 getTime());
294 hash = (37 * hash) + BRANCHES_FIELD_NUMBER;
295 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
296 getBranches());
297 hash = (37 * hash) + FAILURES_FIELD_NUMBER;
298 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
299 getFailures());
300 hash = (37 * hash) + SOLUTIONS_FIELD_NUMBER;
301 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
302 getSolutions());
303 hash = (37 * hash) + SMART_TIME_CHECK_FIELD_NUMBER;
304 hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
306 hash = (37 * hash) + CUMULATIVE_FIELD_NUMBER;
307 hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
308 getCumulative());
309 hash = (29 * hash) + unknownFields.hashCode();
310 memoizedHashCode = hash;
311 return hash;
312 }
313
314 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
315 java.nio.ByteBuffer data)
316 throws com.google.protobuf.InvalidProtocolBufferException {
317 return PARSER.parseFrom(data);
318 }
319 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
320 java.nio.ByteBuffer data,
321 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
322 throws com.google.protobuf.InvalidProtocolBufferException {
323 return PARSER.parseFrom(data, extensionRegistry);
324 }
325 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
326 com.google.protobuf.ByteString data)
327 throws com.google.protobuf.InvalidProtocolBufferException {
328 return PARSER.parseFrom(data);
329 }
330 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
331 com.google.protobuf.ByteString data,
332 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
333 throws com.google.protobuf.InvalidProtocolBufferException {
334 return PARSER.parseFrom(data, extensionRegistry);
335 }
336 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data)
337 throws com.google.protobuf.InvalidProtocolBufferException {
338 return PARSER.parseFrom(data);
339 }
340 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
341 byte[] data,
342 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
343 throws com.google.protobuf.InvalidProtocolBufferException {
344 return PARSER.parseFrom(data, extensionRegistry);
345 }
346 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input)
347 throws java.io.IOException {
348 return com.google.protobuf.GeneratedMessageV3
349 .parseWithIOException(PARSER, input);
350 }
351 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
352 java.io.InputStream input,
353 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
354 throws java.io.IOException {
355 return com.google.protobuf.GeneratedMessageV3
356 .parseWithIOException(PARSER, input, extensionRegistry);
357 }
358 public static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input)
359 throws java.io.IOException {
360 return com.google.protobuf.GeneratedMessageV3
361 .parseDelimitedWithIOException(PARSER, input);
362 }
363 public static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(
364 java.io.InputStream input,
365 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
366 throws java.io.IOException {
367 return com.google.protobuf.GeneratedMessageV3
368 .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
369 }
370 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
371 com.google.protobuf.CodedInputStream input)
372 throws java.io.IOException {
373 return com.google.protobuf.GeneratedMessageV3
374 .parseWithIOException(PARSER, input);
375 }
376 public static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(
377 com.google.protobuf.CodedInputStream input,
378 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
379 throws java.io.IOException {
380 return com.google.protobuf.GeneratedMessageV3
381 .parseWithIOException(PARSER, input, extensionRegistry);
382 }
383
384 @java.lang.Override
385 public Builder newBuilderForType() { return newBuilder(); }
386 public static Builder newBuilder() {
387 return DEFAULT_INSTANCE.toBuilder();
388 }
389 public static Builder newBuilder(com.google.ortools.constraintsolver.RegularLimitParameters prototype) {
390 return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
391 }
392 @java.lang.Override
394 return this == DEFAULT_INSTANCE
395 ? new Builder() : new Builder().mergeFrom(this);
396 }
397
398 @java.lang.Override
400 com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
401 Builder builder = new Builder(parent);
402 return builder;
403 }
412 public static final class Builder extends
413 com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
414 // @@protoc_insertion_point(builder_implements:operations_research.RegularLimitParameters)
415 com.google.ortools.constraintsolver.RegularLimitParametersOrBuilder {
416 public static final com.google.protobuf.Descriptors.Descriptor
418 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
419 }
420
421 @java.lang.Override
422 protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
424 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_fieldAccessorTable
425 .ensureFieldAccessorsInitialized(
426 com.google.ortools.constraintsolver.RegularLimitParameters.class, com.google.ortools.constraintsolver.RegularLimitParameters.Builder.class);
427 }
428
429 // Construct using com.google.ortools.constraintsolver.RegularLimitParameters.newBuilder()
430 private Builder() {
431 maybeForceBuilderInitialization();
432 }
433
434 private Builder(
435 com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
436 super(parent);
437 maybeForceBuilderInitialization();
438 }
439 private void maybeForceBuilderInitialization() {
440 if (com.google.protobuf.GeneratedMessageV3
441 .alwaysUseFieldBuilders) {
442 }
443 }
444 @java.lang.Override
445 public Builder clear() {
446 super.clear();
447 time_ = 0L;
448
449 branches_ = 0L;
450
451 failures_ = 0L;
452
453 solutions_ = 0L;
454
455 smartTimeCheck_ = false;
456
457 cumulative_ = false;
458
459 return this;
460 }
461
462 @java.lang.Override
463 public com.google.protobuf.Descriptors.Descriptor
465 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
466 }
467
468 @java.lang.Override
469 public com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType() {
470 return com.google.ortools.constraintsolver.RegularLimitParameters.getDefaultInstance();
471 }
472
473 @java.lang.Override
474 public com.google.ortools.constraintsolver.RegularLimitParameters build() {
475 com.google.ortools.constraintsolver.RegularLimitParameters result = buildPartial();
476 if (!result.isInitialized()) {
477 throw newUninitializedMessageException(result);
478 }
479 return result;
480 }
481
482 @java.lang.Override
483 public com.google.ortools.constraintsolver.RegularLimitParameters buildPartial() {
484 com.google.ortools.constraintsolver.RegularLimitParameters result = new com.google.ortools.constraintsolver.RegularLimitParameters(this);
485 result.time_ = time_;
486 result.branches_ = branches_;
487 result.failures_ = failures_;
488 result.solutions_ = solutions_;
489 result.smartTimeCheck_ = smartTimeCheck_;
490 result.cumulative_ = cumulative_;
491 onBuilt();
492 return result;
493 }
494
495 @java.lang.Override
496 public Builder clone() {
497 return super.clone();
498 }
499 @java.lang.Override
501 com.google.protobuf.Descriptors.FieldDescriptor field,
502 java.lang.Object value) {
503 return super.setField(field, value);
504 }
505 @java.lang.Override
507 com.google.protobuf.Descriptors.FieldDescriptor field) {
508 return super.clearField(field);
509 }
510 @java.lang.Override
512 com.google.protobuf.Descriptors.OneofDescriptor oneof) {
513 return super.clearOneof(oneof);
514 }
515 @java.lang.Override
517 com.google.protobuf.Descriptors.FieldDescriptor field,
518 int index, java.lang.Object value) {
519 return super.setRepeatedField(field, index, value);
520 }
521 @java.lang.Override
523 com.google.protobuf.Descriptors.FieldDescriptor field,
524 java.lang.Object value) {
525 return super.addRepeatedField(field, value);
526 }
527 @java.lang.Override
528 public Builder mergeFrom(com.google.protobuf.Message other) {
529 if (other instanceof com.google.ortools.constraintsolver.RegularLimitParameters) {
530 return mergeFrom((com.google.ortools.constraintsolver.RegularLimitParameters)other);
531 } else {
532 super.mergeFrom(other);
533 return this;
534 }
535 }
536
537 public Builder mergeFrom(com.google.ortools.constraintsolver.RegularLimitParameters other) {
538 if (other == com.google.ortools.constraintsolver.RegularLimitParameters.getDefaultInstance()) return this;
539 if (other.getTime() != 0L) {
540 setTime(other.getTime());
541 }
542 if (other.getBranches() != 0L) {
543 setBranches(other.getBranches());
544 }
545 if (other.getFailures() != 0L) {
546 setFailures(other.getFailures());
547 }
548 if (other.getSolutions() != 0L) {
549 setSolutions(other.getSolutions());
550 }
551 if (other.getSmartTimeCheck() != false) {
552 setSmartTimeCheck(other.getSmartTimeCheck());
553 }
554 if (other.getCumulative() != false) {
555 setCumulative(other.getCumulative());
556 }
557 this.mergeUnknownFields(other.unknownFields);
558 onChanged();
559 return this;
560 }
561
562 @java.lang.Override
563 public final boolean isInitialized() {
564 return true;
565 }
566
567 @java.lang.Override
569 com.google.protobuf.CodedInputStream input,
570 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
571 throws java.io.IOException {
572 com.google.ortools.constraintsolver.RegularLimitParameters parsedMessage = null;
573 try {
574 parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
575 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
576 parsedMessage = (com.google.ortools.constraintsolver.RegularLimitParameters) e.getUnfinishedMessage();
577 throw e.unwrapIOException();
578 } finally {
579 if (parsedMessage != null) {
580 mergeFrom(parsedMessage);
581 }
582 }
583 return this;
584 }
585
586 private long time_ ;
595 @java.lang.Override
596 public long getTime() {
597 return time_;
598 }
608 public Builder setTime(long value) {
609
610 time_ = value;
611 onChanged();
612 return this;
613 }
623
624 time_ = 0L;
625 onChanged();
626 return this;
627 }
628
629 private long branches_ ;
634 @java.lang.Override
635 public long getBranches() {
636 return branches_;
637 }
643 public Builder setBranches(long value) {
644
645 branches_ = value;
646 onChanged();
647 return this;
648 }
654
655 branches_ = 0L;
656 onChanged();
657 return this;
658 }
659
660 private long failures_ ;
665 @java.lang.Override
666 public long getFailures() {
667 return failures_;
668 }
674 public Builder setFailures(long value) {
675
676 failures_ = value;
677 onChanged();
678 return this;
679 }
685
686 failures_ = 0L;
687 onChanged();
688 return this;
689 }
690
691 private long solutions_ ;
696 @java.lang.Override
697 public long getSolutions() {
698 return solutions_;
699 }
705 public Builder setSolutions(long value) {
706
707 solutions_ = value;
708 onChanged();
709 return this;
710 }
716
717 solutions_ = 0L;
718 onChanged();
719 return this;
720 }
721
722 private boolean smartTimeCheck_ ;
727 @java.lang.Override
728 public boolean getSmartTimeCheck() {
729 return smartTimeCheck_;
730 }
736 public Builder setSmartTimeCheck(boolean value) {
737
738 smartTimeCheck_ = value;
739 onChanged();
740 return this;
741 }
747
748 smartTimeCheck_ = false;
749 onChanged();
750 return this;
751 }
752
753 private boolean cumulative_ ;
758 @java.lang.Override
759 public boolean getCumulative() {
760 return cumulative_;
761 }
767 public Builder setCumulative(boolean value) {
768
769 cumulative_ = value;
770 onChanged();
771 return this;
772 }
778
779 cumulative_ = false;
780 onChanged();
781 return this;
782 }
783 @java.lang.Override
785 final com.google.protobuf.UnknownFieldSet unknownFields) {
786 return super.setUnknownFields(unknownFields);
787 }
788
789 @java.lang.Override
791 final com.google.protobuf.UnknownFieldSet unknownFields) {
792 return super.mergeUnknownFields(unknownFields);
793 }
794
795
796 // @@protoc_insertion_point(builder_scope:operations_research.RegularLimitParameters)
797 }
798
799 // @@protoc_insertion_point(class_scope:operations_research.RegularLimitParameters)
800 private static final com.google.ortools.constraintsolver.RegularLimitParameters DEFAULT_INSTANCE;
801 static {
802 DEFAULT_INSTANCE = new com.google.ortools.constraintsolver.RegularLimitParameters();
803 }
804
805 public static com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstance() {
806 return DEFAULT_INSTANCE;
807 }
808
809 private static final com.google.protobuf.Parser<RegularLimitParameters>
810 PARSER = new com.google.protobuf.AbstractParser<RegularLimitParameters>() {
811 @java.lang.Override
812 public RegularLimitParameters parsePartialFrom(
813 com.google.protobuf.CodedInputStream input,
814 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
815 throws com.google.protobuf.InvalidProtocolBufferException {
816 return new RegularLimitParameters(input, extensionRegistry);
817 }
818 };
819
820 public static com.google.protobuf.Parser<RegularLimitParameters> parser() {
821 return PARSER;
822 }
823
824 @java.lang.Override
825 public com.google.protobuf.Parser<RegularLimitParameters> getParserForType() {
826 return PARSER;
827 }
828
829 @java.lang.Override
830 public com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType() {
831 return DEFAULT_INSTANCE;
832 }
833
834}
835
.lang.Override Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
.lang.Override Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
.lang.Override Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value)
.lang.Override final Builder mergeUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields)
.lang.Override Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
.lang.Override com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
.lang.Override boolean getSmartTimeCheck()
bool smart_time_check = 5;
Builder mergeFrom(com.google.ortools.constraintsolver.RegularLimitParameters other)
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType()
.lang.Override Builder mergeFrom(com.google.protobuf.Message other)
.lang.Override com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters build()
.lang.Override final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields)
Builder setSmartTimeCheck(boolean value)
bool smart_time_check = 5;
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters buildPartial()
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
.lang.Override Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
.lang.Override Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input)
.lang.Override Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
.lang.Override boolean getSmartTimeCheck()
bool smart_time_check = 5;
static com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstance()
static Builder newBuilder(com.google.ortools.constraintsolver.RegularLimitParameters prototype)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.CodedInputStream input)
.lang.Override void writeTo(com.google.protobuf.CodedOutputStream output)
.lang.Override com.google.protobuf.Parser< RegularLimitParameters > getParserForType()
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType()
static com.google.protobuf.Parser< RegularLimitParameters > parser()
.lang.Override com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
.lang.Override final com.google.protobuf.UnknownFieldSet getUnknownFields()
static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.ByteString data)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.nio.ByteBuffer data)
.lang.Override java.lang.Object newInstance(UnusedPrivateParameter unused)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
.lang.Override boolean getCumulative()
bool cumulative = 6;
.lang.Override boolean equals(final java.lang.Object obj)
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()