Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
RegularLimitParameters.java
Go to the documentation of this file.
1// Generated by the protocol buffer compiler. DO NOT EDIT!
2// NO CHECKED-IN PROTOBUF GENCODE
3// source: ortools/constraint_solver/search_limit.proto
4// Protobuf Java Version: 4.31.1
5
6package com.google.ortools.constraintsolver;
7
16@com.google.protobuf.Generated
17public final class RegularLimitParameters extends
18 com.google.protobuf.GeneratedMessage implements
19 // @@protoc_insertion_point(message_implements:operations_research.RegularLimitParameters)
21private static final long serialVersionUID = 0L;
22 static {
23 com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
24 com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
25 /* major= */ 4,
26 /* minor= */ 31,
27 /* patch= */ 1,
28 /* suffix= */ "",
29 RegularLimitParameters.class.getName());
30 }
31 // Use RegularLimitParameters.newBuilder() to construct.
32 private RegularLimitParameters(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
33 super(builder);
34 }
35 private RegularLimitParameters() {
36 }
37
38 public static final com.google.protobuf.Descriptors.Descriptor
40 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
41 }
42
43 @java.lang.Override
44 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
46 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_fieldAccessorTable
47 .ensureFieldAccessorsInitialized(
48 com.google.ortools.constraintsolver.RegularLimitParameters.class, com.google.ortools.constraintsolver.RegularLimitParameters.Builder.class);
49 }
50
51 public static final int TIME_FIELD_NUMBER = 1;
52 private long time_ = 0L;
61 @java.lang.Override
62 public long getTime() {
63 return time_;
64 }
65
66 public static final int BRANCHES_FIELD_NUMBER = 2;
67 private long branches_ = 0L;
72 @java.lang.Override
73 public long getBranches() {
74 return branches_;
75 }
76
77 public static final int FAILURES_FIELD_NUMBER = 3;
78 private long failures_ = 0L;
83 @java.lang.Override
84 public long getFailures() {
85 return failures_;
86 }
87
88 public static final int SOLUTIONS_FIELD_NUMBER = 4;
89 private long solutions_ = 0L;
94 @java.lang.Override
95 public long getSolutions() {
96 return solutions_;
97 }
98
99 public static final int SMART_TIME_CHECK_FIELD_NUMBER = 5;
100 private boolean smartTimeCheck_ = false;
105 @java.lang.Override
106 public boolean getSmartTimeCheck() {
107 return smartTimeCheck_;
108 }
109
110 public static final int CUMULATIVE_FIELD_NUMBER = 6;
111 private boolean cumulative_ = false;
116 @java.lang.Override
117 public boolean getCumulative() {
118 return cumulative_;
119 }
120
121 private byte memoizedIsInitialized = -1;
122 @java.lang.Override
123 public final boolean isInitialized() {
124 byte isInitialized = memoizedIsInitialized;
125 if (isInitialized == 1) return true;
126 if (isInitialized == 0) return false;
127
128 memoizedIsInitialized = 1;
129 return true;
130 }
131
132 @java.lang.Override
133 public void writeTo(com.google.protobuf.CodedOutputStream output)
134 throws java.io.IOException {
135 if (time_ != 0L) {
136 output.writeInt64(1, time_);
137 }
138 if (branches_ != 0L) {
139 output.writeInt64(2, branches_);
140 }
141 if (failures_ != 0L) {
142 output.writeInt64(3, failures_);
143 }
144 if (solutions_ != 0L) {
145 output.writeInt64(4, solutions_);
146 }
147 if (smartTimeCheck_ != false) {
148 output.writeBool(5, smartTimeCheck_);
149 }
150 if (cumulative_ != false) {
151 output.writeBool(6, cumulative_);
152 }
153 getUnknownFields().writeTo(output);
154 }
155
156 @java.lang.Override
157 public int getSerializedSize() {
158 int size = memoizedSize;
159 if (size != -1) return size;
160
161 size = 0;
162 if (time_ != 0L) {
163 size += com.google.protobuf.CodedOutputStream
164 .computeInt64Size(1, time_);
165 }
166 if (branches_ != 0L) {
167 size += com.google.protobuf.CodedOutputStream
168 .computeInt64Size(2, branches_);
169 }
170 if (failures_ != 0L) {
171 size += com.google.protobuf.CodedOutputStream
172 .computeInt64Size(3, failures_);
173 }
174 if (solutions_ != 0L) {
175 size += com.google.protobuf.CodedOutputStream
176 .computeInt64Size(4, solutions_);
177 }
178 if (smartTimeCheck_ != false) {
179 size += com.google.protobuf.CodedOutputStream
180 .computeBoolSize(5, smartTimeCheck_);
181 }
182 if (cumulative_ != false) {
183 size += com.google.protobuf.CodedOutputStream
184 .computeBoolSize(6, cumulative_);
185 }
186 size += getUnknownFields().getSerializedSize();
187 memoizedSize = size;
188 return size;
189 }
190
191 @java.lang.Override
192 public boolean equals(final java.lang.Object obj) {
193 if (obj == this) {
194 return true;
195 }
196 if (!(obj instanceof com.google.ortools.constraintsolver.RegularLimitParameters)) {
197 return super.equals(obj);
198 }
199 com.google.ortools.constraintsolver.RegularLimitParameters other = (com.google.ortools.constraintsolver.RegularLimitParameters) obj;
200
201 if (getTime()
202 != other.getTime()) return false;
203 if (getBranches()
204 != other.getBranches()) return false;
205 if (getFailures()
206 != other.getFailures()) return false;
207 if (getSolutions()
208 != other.getSolutions()) return false;
210 != other.getSmartTimeCheck()) return false;
211 if (getCumulative()
212 != other.getCumulative()) return false;
213 if (!getUnknownFields().equals(other.getUnknownFields())) return false;
214 return true;
215 }
216
217 @java.lang.Override
218 public int hashCode() {
219 if (memoizedHashCode != 0) {
220 return memoizedHashCode;
221 }
222 int hash = 41;
223 hash = (19 * hash) + getDescriptor().hashCode();
224 hash = (37 * hash) + TIME_FIELD_NUMBER;
225 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
226 getTime());
227 hash = (37 * hash) + BRANCHES_FIELD_NUMBER;
228 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
229 getBranches());
230 hash = (37 * hash) + FAILURES_FIELD_NUMBER;
231 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
232 getFailures());
233 hash = (37 * hash) + SOLUTIONS_FIELD_NUMBER;
234 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
235 getSolutions());
236 hash = (37 * hash) + SMART_TIME_CHECK_FIELD_NUMBER;
237 hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
239 hash = (37 * hash) + CUMULATIVE_FIELD_NUMBER;
240 hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
241 getCumulative());
242 hash = (29 * hash) + getUnknownFields().hashCode();
243 memoizedHashCode = hash;
244 return hash;
245 }
246
248 java.nio.ByteBuffer data)
249 throws com.google.protobuf.InvalidProtocolBufferException {
250 return PARSER.parseFrom(data);
251 }
253 java.nio.ByteBuffer data,
254 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
255 throws com.google.protobuf.InvalidProtocolBufferException {
256 return PARSER.parseFrom(data, extensionRegistry);
257 }
259 com.google.protobuf.ByteString data)
260 throws com.google.protobuf.InvalidProtocolBufferException {
261 return PARSER.parseFrom(data);
262 }
264 com.google.protobuf.ByteString data,
265 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
266 throws com.google.protobuf.InvalidProtocolBufferException {
267 return PARSER.parseFrom(data, extensionRegistry);
268 }
270 throws com.google.protobuf.InvalidProtocolBufferException {
271 return PARSER.parseFrom(data);
272 }
274 byte[] data,
275 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
276 throws com.google.protobuf.InvalidProtocolBufferException {
277 return PARSER.parseFrom(data, extensionRegistry);
278 }
280 throws java.io.IOException {
281 return com.google.protobuf.GeneratedMessage
282 .parseWithIOException(PARSER, input);
283 }
285 java.io.InputStream input,
286 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
287 throws java.io.IOException {
288 return com.google.protobuf.GeneratedMessage
289 .parseWithIOException(PARSER, input, extensionRegistry);
290 }
291
293 throws java.io.IOException {
294 return com.google.protobuf.GeneratedMessage
295 .parseDelimitedWithIOException(PARSER, input);
296 }
297
299 java.io.InputStream input,
300 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
301 throws java.io.IOException {
302 return com.google.protobuf.GeneratedMessage
303 .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
304 }
306 com.google.protobuf.CodedInputStream input)
307 throws java.io.IOException {
308 return com.google.protobuf.GeneratedMessage
309 .parseWithIOException(PARSER, input);
310 }
312 com.google.protobuf.CodedInputStream input,
313 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
314 throws java.io.IOException {
315 return com.google.protobuf.GeneratedMessage
316 .parseWithIOException(PARSER, input, extensionRegistry);
317 }
318
319 @java.lang.Override
320 public Builder newBuilderForType() { return newBuilder(); }
321 public static Builder newBuilder() {
322 return DEFAULT_INSTANCE.toBuilder();
323 }
324 public static Builder newBuilder(com.google.ortools.constraintsolver.RegularLimitParameters prototype) {
325 return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
326 }
327 @java.lang.Override
329 return this == DEFAULT_INSTANCE
330 ? new Builder() : new Builder().mergeFrom(this);
331 }
332
333 @java.lang.Override
335 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
336 Builder builder = new Builder(parent);
337 return builder;
338 }
339
347 public static final class Builder extends
348 com.google.protobuf.GeneratedMessage.Builder<Builder> implements
349 // @@protoc_insertion_point(builder_implements:operations_research.RegularLimitParameters)
351 public static final com.google.protobuf.Descriptors.Descriptor
353 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
354 }
355
356 @java.lang.Override
357 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
359 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_fieldAccessorTable
360 .ensureFieldAccessorsInitialized(
361 com.google.ortools.constraintsolver.RegularLimitParameters.class, com.google.ortools.constraintsolver.RegularLimitParameters.Builder.class);
362 }
363
364 // Construct using com.google.ortools.constraintsolver.RegularLimitParameters.newBuilder()
365 private Builder() {
366
367 }
368
369 private Builder(
370 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
371 super(parent);
372
373 }
374 @java.lang.Override
375 public Builder clear() {
376 super.clear();
377 bitField0_ = 0;
378 time_ = 0L;
379 branches_ = 0L;
380 failures_ = 0L;
381 solutions_ = 0L;
382 smartTimeCheck_ = false;
383 cumulative_ = false;
384 return this;
385 }
386
387 @java.lang.Override
388 public com.google.protobuf.Descriptors.Descriptor
390 return com.google.ortools.constraintsolver.SearchLimitProtobuf.internal_static_operations_research_RegularLimitParameters_descriptor;
391 }
392
393 @java.lang.Override
395 return com.google.ortools.constraintsolver.RegularLimitParameters.getDefaultInstance();
396 }
397
398 @java.lang.Override
401 if (!result.isInitialized()) {
402 throw newUninitializedMessageException(result);
403 }
404 return result;
405 }
406
407 @java.lang.Override
409 com.google.ortools.constraintsolver.RegularLimitParameters result = new com.google.ortools.constraintsolver.RegularLimitParameters(this);
410 if (bitField0_ != 0) { buildPartial0(result); }
411 onBuilt();
412 return result;
413 }
414
415 private void buildPartial0(com.google.ortools.constraintsolver.RegularLimitParameters result) {
416 int from_bitField0_ = bitField0_;
417 if (((from_bitField0_ & 0x00000001) != 0)) {
418 result.time_ = time_;
419 }
420 if (((from_bitField0_ & 0x00000002) != 0)) {
421 result.branches_ = branches_;
422 }
423 if (((from_bitField0_ & 0x00000004) != 0)) {
424 result.failures_ = failures_;
425 }
426 if (((from_bitField0_ & 0x00000008) != 0)) {
427 result.solutions_ = solutions_;
428 }
429 if (((from_bitField0_ & 0x00000010) != 0)) {
430 result.smartTimeCheck_ = smartTimeCheck_;
431 }
432 if (((from_bitField0_ & 0x00000020) != 0)) {
433 result.cumulative_ = cumulative_;
434 }
435 }
436
437 @java.lang.Override
438 public Builder mergeFrom(com.google.protobuf.Message other) {
439 if (other instanceof com.google.ortools.constraintsolver.RegularLimitParameters) {
440 return mergeFrom((com.google.ortools.constraintsolver.RegularLimitParameters)other);
441 } else {
442 super.mergeFrom(other);
443 return this;
444 }
445 }
446
447 public Builder mergeFrom(com.google.ortools.constraintsolver.RegularLimitParameters other) {
448 if (other == com.google.ortools.constraintsolver.RegularLimitParameters.getDefaultInstance()) return this;
449 if (other.getTime() != 0L) {
450 setTime(other.getTime());
451 }
452 if (other.getBranches() != 0L) {
453 setBranches(other.getBranches());
454 }
455 if (other.getFailures() != 0L) {
456 setFailures(other.getFailures());
457 }
458 if (other.getSolutions() != 0L) {
459 setSolutions(other.getSolutions());
460 }
461 if (other.getSmartTimeCheck() != false) {
462 setSmartTimeCheck(other.getSmartTimeCheck());
463 }
464 if (other.getCumulative() != false) {
465 setCumulative(other.getCumulative());
466 }
467 this.mergeUnknownFields(other.getUnknownFields());
468 onChanged();
469 return this;
470 }
471
472 @java.lang.Override
473 public final boolean isInitialized() {
474 return true;
475 }
476
477 @java.lang.Override
478 public Builder mergeFrom(
479 com.google.protobuf.CodedInputStream input,
480 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
481 throws java.io.IOException {
482 if (extensionRegistry == null) {
483 throw new java.lang.NullPointerException();
484 }
485 try {
486 boolean done = false;
487 while (!done) {
488 int tag = input.readTag();
489 switch (tag) {
490 case 0:
491 done = true;
492 break;
493 case 8: {
494 time_ = input.readInt64();
495 bitField0_ |= 0x00000001;
496 break;
497 } // case 8
498 case 16: {
499 branches_ = input.readInt64();
500 bitField0_ |= 0x00000002;
501 break;
502 } // case 16
503 case 24: {
504 failures_ = input.readInt64();
505 bitField0_ |= 0x00000004;
506 break;
507 } // case 24
508 case 32: {
509 solutions_ = input.readInt64();
510 bitField0_ |= 0x00000008;
511 break;
512 } // case 32
513 case 40: {
514 smartTimeCheck_ = input.readBool();
515 bitField0_ |= 0x00000010;
516 break;
517 } // case 40
518 case 48: {
519 cumulative_ = input.readBool();
520 bitField0_ |= 0x00000020;
521 break;
522 } // case 48
523 default: {
524 if (!super.parseUnknownField(input, extensionRegistry, tag)) {
525 done = true; // was an endgroup tag
526 }
527 break;
528 } // default:
529 } // switch (tag)
530 } // while (!done)
531 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
532 throw e.unwrapIOException();
533 } finally {
534 onChanged();
535 } // finally
536 return this;
537 }
538 private int bitField0_;
539
540 private long time_ ;
549 @java.lang.Override
550 public long getTime() {
551 return time_;
552 }
553
562 public Builder setTime(long value) {
563
564 time_ = value;
565 bitField0_ |= 0x00000001;
566 onChanged();
567 return this;
568 }
569
577 public Builder clearTime() {
578 bitField0_ = (bitField0_ & ~0x00000001);
579 time_ = 0L;
580 onChanged();
581 return this;
582 }
583
584 private long branches_ ;
589 @java.lang.Override
590 public long getBranches() {
591 return branches_;
592 }
593
598 public Builder setBranches(long value) {
599
600 branches_ = value;
601 bitField0_ |= 0x00000002;
602 onChanged();
603 return this;
604 }
605
609 public Builder clearBranches() {
610 bitField0_ = (bitField0_ & ~0x00000002);
611 branches_ = 0L;
612 onChanged();
613 return this;
614 }
615
616 private long failures_ ;
621 @java.lang.Override
622 public long getFailures() {
623 return failures_;
624 }
625
630 public Builder setFailures(long value) {
631
632 failures_ = value;
633 bitField0_ |= 0x00000004;
634 onChanged();
635 return this;
636 }
637
641 public Builder clearFailures() {
642 bitField0_ = (bitField0_ & ~0x00000004);
643 failures_ = 0L;
644 onChanged();
645 return this;
646 }
647
648 private long solutions_ ;
653 @java.lang.Override
654 public long getSolutions() {
655 return solutions_;
656 }
657
662 public Builder setSolutions(long value) {
663
664 solutions_ = value;
665 bitField0_ |= 0x00000008;
666 onChanged();
667 return this;
668 }
669
673 public Builder clearSolutions() {
674 bitField0_ = (bitField0_ & ~0x00000008);
675 solutions_ = 0L;
676 onChanged();
677 return this;
678 }
679
680 private boolean smartTimeCheck_ ;
685 @java.lang.Override
686 public boolean getSmartTimeCheck() {
687 return smartTimeCheck_;
688 }
689
694 public Builder setSmartTimeCheck(boolean value) {
695
696 smartTimeCheck_ = value;
697 bitField0_ |= 0x00000010;
698 onChanged();
699 return this;
700 }
701
705 public Builder clearSmartTimeCheck() {
706 bitField0_ = (bitField0_ & ~0x00000010);
707 smartTimeCheck_ = false;
708 onChanged();
709 return this;
710 }
711
712 private boolean cumulative_ ;
717 @java.lang.Override
718 public boolean getCumulative() {
719 return cumulative_;
720 }
721
726 public Builder setCumulative(boolean value) {
727
728 cumulative_ = value;
729 bitField0_ |= 0x00000020;
730 onChanged();
731 return this;
732 }
733
737 public Builder clearCumulative() {
738 bitField0_ = (bitField0_ & ~0x00000020);
739 cumulative_ = false;
740 onChanged();
741 return this;
742 }
743
744 // @@protoc_insertion_point(builder_scope:operations_research.RegularLimitParameters)
745 }
746
747 // @@protoc_insertion_point(class_scope:operations_research.RegularLimitParameters)
748 private static final com.google.ortools.constraintsolver.RegularLimitParameters DEFAULT_INSTANCE;
749 static {
750 DEFAULT_INSTANCE = new com.google.ortools.constraintsolver.RegularLimitParameters();
751 }
752
754 return DEFAULT_INSTANCE;
755 }
756
757 private static final com.google.protobuf.Parser<RegularLimitParameters>
758 PARSER = new com.google.protobuf.AbstractParser<RegularLimitParameters>() {
759 @java.lang.Override
760 public RegularLimitParameters parsePartialFrom(
761 com.google.protobuf.CodedInputStream input,
762 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
763 throws com.google.protobuf.InvalidProtocolBufferException {
764 Builder builder = newBuilder();
765 try {
766 builder.mergeFrom(input, extensionRegistry);
767 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
768 throw e.setUnfinishedMessage(builder.buildPartial());
769 } catch (com.google.protobuf.UninitializedMessageException e) {
770 throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
771 } catch (java.io.IOException e) {
772 throw new com.google.protobuf.InvalidProtocolBufferException(e)
773 .setUnfinishedMessage(builder.buildPartial());
774 }
775 return builder.buildPartial();
776 }
777 };
778
779 public static com.google.protobuf.Parser<RegularLimitParameters> parser() {
780 return PARSER;
781 }
782
783 @java.lang.Override
784 public com.google.protobuf.Parser<RegularLimitParameters> getParserForType() {
785 return PARSER;
786 }
787
788 @java.lang.Override
792
793}
794
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
Builder mergeFrom(com.google.ortools.constraintsolver.RegularLimitParameters other)
com.google.ortools.constraintsolver.RegularLimitParameters build()
Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
com.google.ortools.constraintsolver.RegularLimitParameters buildPartial()
com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType()
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.nio.ByteBuffer data)
static com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstance()
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.ByteString data)
static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input)
com.google.ortools.constraintsolver.RegularLimitParameters getDefaultInstanceForType()
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Builder newBuilderForType(com.google.protobuf.GeneratedMessage.BuilderParent parent)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(com.google.protobuf.CodedInputStream input)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.constraintsolver.RegularLimitParameters parseDelimitedFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
com.google.protobuf.Parser< RegularLimitParameters > getParserForType()
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static Builder newBuilder(com.google.ortools.constraintsolver.RegularLimitParameters prototype)
void writeTo(com.google.protobuf.CodedOutputStream output)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(byte[] data)
static com.google.ortools.constraintsolver.RegularLimitParameters parseFrom(java.io.InputStream input)
static com.google.protobuf.Parser< RegularLimitParameters > parser()