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 
4 package com.google.ortools.constraintsolver;
5 
14 public final class RegularLimitParameters extends
15  com.google.protobuf.GeneratedMessageV3 implements
16  // @@protoc_insertion_point(message_implements:operations_research.RegularLimitParameters)
18 private 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  }
38  private RegularLimitParameters(
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(
116  }
117 
118  public static final int TIME_FIELD_NUMBER = 1;
119  private long time_;
124  public long getTime() {
125  return time_;
126  }
127 
128  public static final int BRANCHES_FIELD_NUMBER = 2;
129  private long branches_;
134  public long getBranches() {
135  return branches_;
136  }
137 
138  public static final int FAILURES_FIELD_NUMBER = 3;
139  private long failures_;
144  public long getFailures() {
145  return failures_;
146  }
147 
148  public static final int SOLUTIONS_FIELD_NUMBER = 4;
149  private long solutions_;
154  public long getSolutions() {
155  return solutions_;
156  }
157 
158  public static final int SMART_TIME_CHECK_FIELD_NUMBER = 5;
159  private boolean smartTimeCheck_;
164  public boolean getSmartTimeCheck() {
165  return smartTimeCheck_;
166  }
167 
168  public static final int CUMULATIVE_FIELD_NUMBER = 6;
169  private boolean cumulative_;
174  public boolean getCumulative() {
175  return cumulative_;
176  }
177 
178  private byte memoizedIsInitialized = -1;
179  @java.lang.Override
180  public final boolean isInitialized() {
181  byte isInitialized = memoizedIsInitialized;
182  if (isInitialized == 1) return true;
183  if (isInitialized == 0) return false;
184 
185  memoizedIsInitialized = 1;
186  return true;
187  }
188 
189  @java.lang.Override
190  public void writeTo(com.google.protobuf.CodedOutputStream output)
191  throws java.io.IOException {
192  if (time_ != 0L) {
193  output.writeInt64(1, time_);
194  }
195  if (branches_ != 0L) {
196  output.writeInt64(2, branches_);
197  }
198  if (failures_ != 0L) {
199  output.writeInt64(3, failures_);
200  }
201  if (solutions_ != 0L) {
202  output.writeInt64(4, solutions_);
203  }
204  if (smartTimeCheck_ != false) {
205  output.writeBool(5, smartTimeCheck_);
206  }
207  if (cumulative_ != false) {
208  output.writeBool(6, cumulative_);
209  }
210  unknownFields.writeTo(output);
211  }
212 
213  @java.lang.Override
214  public int getSerializedSize() {
215  int size = memoizedSize;
216  if (size != -1) return size;
217 
218  size = 0;
219  if (time_ != 0L) {
220  size += com.google.protobuf.CodedOutputStream
221  .computeInt64Size(1, time_);
222  }
223  if (branches_ != 0L) {
224  size += com.google.protobuf.CodedOutputStream
225  .computeInt64Size(2, branches_);
226  }
227  if (failures_ != 0L) {
228  size += com.google.protobuf.CodedOutputStream
229  .computeInt64Size(3, failures_);
230  }
231  if (solutions_ != 0L) {
232  size += com.google.protobuf.CodedOutputStream
233  .computeInt64Size(4, solutions_);
234  }
235  if (smartTimeCheck_ != false) {
236  size += com.google.protobuf.CodedOutputStream
237  .computeBoolSize(5, smartTimeCheck_);
238  }
239  if (cumulative_ != false) {
240  size += com.google.protobuf.CodedOutputStream
241  .computeBoolSize(6, cumulative_);
242  }
243  size += unknownFields.getSerializedSize();
244  memoizedSize = size;
245  return size;
246  }
247 
248  @java.lang.Override
249  public boolean equals(final java.lang.Object obj) {
250  if (obj == this) {
251  return true;
252  }
253  if (!(obj instanceof com.google.ortools.constraintsolver.RegularLimitParameters)) {
254  return super.equals(obj);
255  }
257 
258  if (getTime()
259  != other.getTime()) return false;
260  if (getBranches()
261  != other.getBranches()) return false;
262  if (getFailures()
263  != other.getFailures()) return false;
264  if (getSolutions()
265  != other.getSolutions()) return false;
266  if (getSmartTimeCheck()
267  != other.getSmartTimeCheck()) return false;
268  if (getCumulative()
269  != other.getCumulative()) return false;
270  if (!unknownFields.equals(other.unknownFields)) return false;
271  return true;
272  }
273 
274  @java.lang.Override
275  public int hashCode() {
276  if (memoizedHashCode != 0) {
277  return memoizedHashCode;
278  }
279  int hash = 41;
280  hash = (19 * hash) + getDescriptor().hashCode();
281  hash = (37 * hash) + TIME_FIELD_NUMBER;
282  hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
283  getTime());
284  hash = (37 * hash) + BRANCHES_FIELD_NUMBER;
285  hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
286  getBranches());
287  hash = (37 * hash) + FAILURES_FIELD_NUMBER;
288  hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
289  getFailures());
290  hash = (37 * hash) + SOLUTIONS_FIELD_NUMBER;
291  hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
292  getSolutions());
293  hash = (37 * hash) + SMART_TIME_CHECK_FIELD_NUMBER;
294  hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
296  hash = (37 * hash) + CUMULATIVE_FIELD_NUMBER;
297  hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
298  getCumulative());
299  hash = (29 * hash) + unknownFields.hashCode();
300  memoizedHashCode = hash;
301  return hash;
302  }
303 
305  java.nio.ByteBuffer data)
306  throws com.google.protobuf.InvalidProtocolBufferException {
307  return PARSER.parseFrom(data);
308  }
310  java.nio.ByteBuffer data,
311  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
312  throws com.google.protobuf.InvalidProtocolBufferException {
313  return PARSER.parseFrom(data, extensionRegistry);
314  }
316  com.google.protobuf.ByteString data)
317  throws com.google.protobuf.InvalidProtocolBufferException {
318  return PARSER.parseFrom(data);
319  }
321  com.google.protobuf.ByteString data,
322  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
323  throws com.google.protobuf.InvalidProtocolBufferException {
324  return PARSER.parseFrom(data, extensionRegistry);
325  }
327  throws com.google.protobuf.InvalidProtocolBufferException {
328  return PARSER.parseFrom(data);
329  }
331  byte[] 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(java.io.InputStream input)
337  throws java.io.IOException {
338  return com.google.protobuf.GeneratedMessageV3
339  .parseWithIOException(PARSER, input);
340  }
342  java.io.InputStream input,
343  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
344  throws java.io.IOException {
345  return com.google.protobuf.GeneratedMessageV3
346  .parseWithIOException(PARSER, input, extensionRegistry);
347  }
349  throws java.io.IOException {
350  return com.google.protobuf.GeneratedMessageV3
351  .parseDelimitedWithIOException(PARSER, input);
352  }
354  java.io.InputStream input,
355  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
356  throws java.io.IOException {
357  return com.google.protobuf.GeneratedMessageV3
358  .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
359  }
361  com.google.protobuf.CodedInputStream input)
362  throws java.io.IOException {
363  return com.google.protobuf.GeneratedMessageV3
364  .parseWithIOException(PARSER, input);
365  }
367  com.google.protobuf.CodedInputStream input,
368  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
369  throws java.io.IOException {
370  return com.google.protobuf.GeneratedMessageV3
371  .parseWithIOException(PARSER, input, extensionRegistry);
372  }
373 
374  @java.lang.Override
375  public Builder newBuilderForType() { return newBuilder(); }
376  public static Builder newBuilder() {
377  return DEFAULT_INSTANCE.toBuilder();
378  }
380  return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
381  }
382  @java.lang.Override
383  public Builder toBuilder() {
384  return this == DEFAULT_INSTANCE
385  ? new Builder() : new Builder().mergeFrom(this);
386  }
387 
388  @java.lang.Override
390  com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
391  Builder builder = new Builder(parent);
392  return builder;
393  }
402  public static final class Builder extends
403  com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
404  // @@protoc_insertion_point(builder_implements:operations_research.RegularLimitParameters)
405  com.google.ortools.constraintsolver.RegularLimitParametersOrBuilder {
406  public static final com.google.protobuf.Descriptors.Descriptor
408  return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
409  }
410 
411  @java.lang.Override
412  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
414  return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_fieldAccessorTable
415  .ensureFieldAccessorsInitialized(
417  }
418 
419  // Construct using com.google.ortools.constraintsolver.RegularLimitParameters.newBuilder()
420  private Builder() {
421  maybeForceBuilderInitialization();
422  }
423 
424  private Builder(
425  com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
426  super(parent);
427  maybeForceBuilderInitialization();
428  }
429  private void maybeForceBuilderInitialization() {
430  if (com.google.protobuf.GeneratedMessageV3
431  .alwaysUseFieldBuilders) {
432  }
433  }
434  @java.lang.Override
435  public Builder clear() {
436  super.clear();
437  time_ = 0L;
438 
439  branches_ = 0L;
440 
441  failures_ = 0L;
442 
443  solutions_ = 0L;
444 
445  smartTimeCheck_ = false;
446 
447  cumulative_ = false;
448 
449  return this;
450  }
451 
452  @java.lang.Override
453  public com.google.protobuf.Descriptors.Descriptor
455  return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
456  }
457 
458  @java.lang.Override
461  }
462 
463  @java.lang.Override
466  if (!result.isInitialized()) {
467  throw newUninitializedMessageException(result);
468  }
469  return result;
470  }
471 
472  @java.lang.Override
475  result.time_ = time_;
476  result.branches_ = branches_;
477  result.failures_ = failures_;
478  result.solutions_ = solutions_;
479  result.smartTimeCheck_ = smartTimeCheck_;
480  result.cumulative_ = cumulative_;
481  onBuilt();
482  return result;
483  }
484 
485  @java.lang.Override
486  public Builder clone() {
487  return super.clone();
488  }
489  @java.lang.Override
491  com.google.protobuf.Descriptors.FieldDescriptor field,
492  java.lang.Object value) {
493  return super.setField(field, value);
494  }
495  @java.lang.Override
497  com.google.protobuf.Descriptors.FieldDescriptor field) {
498  return super.clearField(field);
499  }
500  @java.lang.Override
502  com.google.protobuf.Descriptors.OneofDescriptor oneof) {
503  return super.clearOneof(oneof);
504  }
505  @java.lang.Override
507  com.google.protobuf.Descriptors.FieldDescriptor field,
508  int index, java.lang.Object value) {
509  return super.setRepeatedField(field, index, value);
510  }
511  @java.lang.Override
513  com.google.protobuf.Descriptors.FieldDescriptor field,
514  java.lang.Object value) {
515  return super.addRepeatedField(field, value);
516  }
517  @java.lang.Override
518  public Builder mergeFrom(com.google.protobuf.Message other) {
521  } else {
522  super.mergeFrom(other);
523  return this;
524  }
525  }
526 
529  if (other.getTime() != 0L) {
530  setTime(other.getTime());
531  }
532  if (other.getBranches() != 0L) {
533  setBranches(other.getBranches());
534  }
535  if (other.getFailures() != 0L) {
536  setFailures(other.getFailures());
537  }
538  if (other.getSolutions() != 0L) {
539  setSolutions(other.getSolutions());
540  }
541  if (other.getSmartTimeCheck() != false) {
542  setSmartTimeCheck(other.getSmartTimeCheck());
543  }
544  if (other.getCumulative() != false) {
545  setCumulative(other.getCumulative());
546  }
547  this.mergeUnknownFields(other.unknownFields);
548  onChanged();
549  return this;
550  }
551 
552  @java.lang.Override
553  public final boolean isInitialized() {
554  return true;
555  }
556 
557  @java.lang.Override
559  com.google.protobuf.CodedInputStream input,
560  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
561  throws java.io.IOException {
563  try {
564  parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
565  } catch (com.google.protobuf.InvalidProtocolBufferException e) {
566  parsedMessage = (com.google.ortools.constraintsolver.RegularLimitParameters) e.getUnfinishedMessage();
567  throw e.unwrapIOException();
568  } finally {
569  if (parsedMessage != null) {
570  mergeFrom(parsedMessage);
571  }
572  }
573  return this;
574  }
575 
576  private long time_ ;
581  public long getTime() {
582  return time_;
583  }
589  public Builder setTime(long value) {
590 
591  time_ = value;
592  onChanged();
593  return this;
594  }
599  public Builder clearTime() {
600 
601  time_ = 0L;
602  onChanged();
603  return this;
604  }
605 
606  private long branches_ ;
611  public long getBranches() {
612  return branches_;
613  }
619  public Builder setBranches(long value) {
620 
621  branches_ = value;
622  onChanged();
623  return this;
624  }
630 
631  branches_ = 0L;
632  onChanged();
633  return this;
634  }
635 
636  private long failures_ ;
641  public long getFailures() {
642  return failures_;
643  }
649  public Builder setFailures(long value) {
650 
651  failures_ = value;
652  onChanged();
653  return this;
654  }
660 
661  failures_ = 0L;
662  onChanged();
663  return this;
664  }
665 
666  private long solutions_ ;
671  public long getSolutions() {
672  return solutions_;
673  }
679  public Builder setSolutions(long value) {
680 
681  solutions_ = value;
682  onChanged();
683  return this;
684  }
690 
691  solutions_ = 0L;
692  onChanged();
693  return this;
694  }
695 
696  private boolean smartTimeCheck_ ;
701  public boolean getSmartTimeCheck() {
702  return smartTimeCheck_;
703  }
709  public Builder setSmartTimeCheck(boolean value) {
710 
711  smartTimeCheck_ = value;
712  onChanged();
713  return this;
714  }
720 
721  smartTimeCheck_ = false;
722  onChanged();
723  return this;
724  }
725 
726  private boolean cumulative_ ;
731  public boolean getCumulative() {
732  return cumulative_;
733  }
739  public Builder setCumulative(boolean value) {
740 
741  cumulative_ = value;
742  onChanged();
743  return this;
744  }
750 
751  cumulative_ = false;
752  onChanged();
753  return this;
754  }
755  @java.lang.Override
756  public final Builder setUnknownFields(
757  final com.google.protobuf.UnknownFieldSet unknownFields) {
758  return super.setUnknownFields(unknownFields);
759  }
760 
761  @java.lang.Override
763  final com.google.protobuf.UnknownFieldSet unknownFields) {
764  return super.mergeUnknownFields(unknownFields);
765  }
766 
767 
768  // @@protoc_insertion_point(builder_scope:operations_research.RegularLimitParameters)
769  }
770 
771  // @@protoc_insertion_point(class_scope:operations_research.RegularLimitParameters)
772  private static final com.google.ortools.constraintsolver.RegularLimitParameters DEFAULT_INSTANCE;
773  static {
774  DEFAULT_INSTANCE = new com.google.ortools.constraintsolver.RegularLimitParameters();
775  }
776 
778  return DEFAULT_INSTANCE;
779  }
780 
781  private static final com.google.protobuf.Parser<RegularLimitParameters>
782  PARSER = new com.google.protobuf.AbstractParser<RegularLimitParameters>() {
783  @java.lang.Override
784  public RegularLimitParameters parsePartialFrom(
785  com.google.protobuf.CodedInputStream input,
786  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
787  throws com.google.protobuf.InvalidProtocolBufferException {
788  return new RegularLimitParameters(input, extensionRegistry);
789  }
790  };
791 
792  public static com.google.protobuf.Parser<RegularLimitParameters> parser() {
793  return PARSER;
794  }
795 
796  @java.lang.Override
797  public com.google.protobuf.Parser<RegularLimitParameters> getParserForType() {
798  return PARSER;
799  }
800 
801  @java.lang.Override
803  return DEFAULT_INSTANCE;
804  }
805 
806 }
807 
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType()
Builder setBranches(long value)
int64 branches = 2;
.lang.Override final boolean isInitialized()
Builder setSmartTimeCheck(boolean value)
bool smart_time_check = 5;
long getTime()
int64 time = 1;
boolean getCumulative()
bool cumulative = 6;
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.CodedInputStream input)
static final int BRANCHES_FIELD_NUMBER
.lang.Override com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
.lang.Override int hashCode()
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType()
.lang.Override com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
.lang.Override Builder newBuilderForType()
.lang.Override boolean equals(final java.lang.Object obj)
long getTime()
int64 time = 1;
boolean getSmartTimeCheck()
bool smart_time_check = 5;
static Builder newBuilder(com.google.ortools.constraintsolver.RegularLimitParameters prototype)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.protobuf.Parser< RegularLimitParameters > parser()
static Builder newBuilder()
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
.lang.Override Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
Builder clearTime()
int64 time = 1;
static final int SMART_TIME_CHECK_FIELD_NUMBER
static com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstance()
.lang.Override int getSerializedSize()
Builder clearSolutions()
int64 solutions = 4;
Builder setSolutions(long value)
int64 solutions = 4;
.lang.Override Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
.lang.Override final com.google.protobuf.UnknownFieldSet getUnknownFields()
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters buildPartial()
Builder setTime(long value)
int64 time = 1;
.lang.Override com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
.lang.Override java.lang.Object newInstance(UnusedPrivateParameter unused)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
.lang.Override final boolean isInitialized()
.lang.Override Builder clone()
.lang.Override com.google.ortools.constraintsolver.RegularLimitParameters build()
.lang.Override Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
static final int CUMULATIVE_FIELD_NUMBER
static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input)
Builder setFailures(long value)
int64 failures = 3;
static final int FAILURES_FIELD_NUMBER
.lang.Override final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields)
.lang.Override Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
long getSolutions()
int64 solutions = 4;
Builder clearFailures()
int64 failures = 3;
.lang.Override com.google.protobuf.Parser< RegularLimitParameters > getParserForType()
static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
.lang.Override Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
long getBranches()
int64 branches = 2;
Builder clearSmartTimeCheck()
bool smart_time_check = 5;
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.nio.ByteBuffer data)
boolean getCumulative()
bool cumulative = 6;
Builder setCumulative(boolean value)
bool cumulative = 6;
Builder clearBranches()
int64 branches = 2;
long getSolutions()
int64 solutions = 4;
.lang.Override Builder toBuilder()
.lang.Override final Builder mergeUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static final int SOLUTIONS_FIELD_NUMBER
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
static final int TIME_FIELD_NUMBER
.lang.Override Builder mergeFrom(com.google.protobuf.Message other)
long getBranches()
int64 branches = 2;
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.ByteString data)
Builder mergeFrom(com.google.ortools.constraintsolver.RegularLimitParameters other)
.lang.Override Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
long getFailures()
int64 failures = 3;
long getFailures()
int64 failures = 3;
Builder clearCumulative()
bool cumulative = 6;
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data)
.lang.Override void writeTo(com.google.protobuf.CodedOutputStream output)
boolean getSmartTimeCheck()
bool smart_time_check = 5;
.lang.Override Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
.lang.Override Builder clear()