Google OR-Tools v9.9
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
FlowArcProto.java
Go to the documentation of this file.
1// Generated by the protocol buffer compiler. DO NOT EDIT!
2// source: ortools/graph/flow_problem.proto
3
4// Protobuf Java Version: 3.25.3
5package com.google.ortools.graph;
6
10public final class FlowArcProto extends
11 com.google.protobuf.GeneratedMessageV3 implements
12 // @@protoc_insertion_point(message_implements:operations_research.FlowArcProto)
14private static final long serialVersionUID = 0L;
15 // Use FlowArcProto.newBuilder() to construct.
16 private FlowArcProto(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
17 super(builder);
18 }
19 private FlowArcProto() {
20 capacity_ = 1L;
21 }
22
23 @java.lang.Override
24 @SuppressWarnings({"unused"})
25 protected java.lang.Object newInstance(
26 UnusedPrivateParameter unused) {
27 return new FlowArcProto();
28 }
29
30 public static final com.google.protobuf.Descriptors.Descriptor
32 return com.google.ortools.graph.FlowProblem.internal_static_operations_research_FlowArcProto_descriptor;
33 }
34
35 @java.lang.Override
36 protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
38 return com.google.ortools.graph.FlowProblem.internal_static_operations_research_FlowArcProto_fieldAccessorTable
39 .ensureFieldAccessorsInitialized(
40 com.google.ortools.graph.FlowArcProto.class, com.google.ortools.graph.FlowArcProto.Builder.class);
41 }
42
43 private int bitField0_;
44 public static final int TAIL_FIELD_NUMBER = 1;
45 private long tail_ = 0L;
55 @java.lang.Override
56 public boolean hasTail() {
57 return ((bitField0_ & 0x00000001) != 0);
58 }
68 @java.lang.Override
69 public long getTail() {
70 return tail_;
71 }
72
73 public static final int HEAD_FIELD_NUMBER = 2;
74 private long head_ = 0L;
79 @java.lang.Override
80 public boolean hasHead() {
81 return ((bitField0_ & 0x00000002) != 0);
82 }
87 @java.lang.Override
88 public long getHead() {
89 return head_;
90 }
91
92 public static final int CAPACITY_FIELD_NUMBER = 3;
93 private long capacity_ = 1L;
103 @java.lang.Override
104 public boolean hasCapacity() {
105 return ((bitField0_ & 0x00000004) != 0);
106 }
116 @java.lang.Override
117 public long getCapacity() {
118 return capacity_;
119 }
120
121 public static final int UNIT_COST_FIELD_NUMBER = 4;
122 private long unitCost_ = 0L;
132 @java.lang.Override
133 public boolean hasUnitCost() {
134 return ((bitField0_ & 0x00000008) != 0);
135 }
145 @java.lang.Override
146 public long getUnitCost() {
147 return unitCost_;
148 }
149
150 private byte memoizedIsInitialized = -1;
151 @java.lang.Override
152 public final boolean isInitialized() {
153 byte isInitialized = memoizedIsInitialized;
154 if (isInitialized == 1) return true;
155 if (isInitialized == 0) return false;
156
157 memoizedIsInitialized = 1;
158 return true;
159 }
160
161 @java.lang.Override
162 public void writeTo(com.google.protobuf.CodedOutputStream output)
163 throws java.io.IOException {
164 if (((bitField0_ & 0x00000001) != 0)) {
165 output.writeInt64(1, tail_);
166 }
167 if (((bitField0_ & 0x00000002) != 0)) {
168 output.writeInt64(2, head_);
169 }
170 if (((bitField0_ & 0x00000004) != 0)) {
171 output.writeInt64(3, capacity_);
172 }
173 if (((bitField0_ & 0x00000008) != 0)) {
174 output.writeInt64(4, unitCost_);
175 }
176 getUnknownFields().writeTo(output);
177 }
178
179 @java.lang.Override
180 public int getSerializedSize() {
181 int size = memoizedSize;
182 if (size != -1) return size;
183
184 size = 0;
185 if (((bitField0_ & 0x00000001) != 0)) {
186 size += com.google.protobuf.CodedOutputStream
187 .computeInt64Size(1, tail_);
188 }
189 if (((bitField0_ & 0x00000002) != 0)) {
190 size += com.google.protobuf.CodedOutputStream
191 .computeInt64Size(2, head_);
192 }
193 if (((bitField0_ & 0x00000004) != 0)) {
194 size += com.google.protobuf.CodedOutputStream
195 .computeInt64Size(3, capacity_);
196 }
197 if (((bitField0_ & 0x00000008) != 0)) {
198 size += com.google.protobuf.CodedOutputStream
199 .computeInt64Size(4, unitCost_);
200 }
201 size += getUnknownFields().getSerializedSize();
202 memoizedSize = size;
203 return size;
204 }
205
206 @java.lang.Override
207 public boolean equals(final java.lang.Object obj) {
208 if (obj == this) {
209 return true;
210 }
211 if (!(obj instanceof com.google.ortools.graph.FlowArcProto)) {
212 return super.equals(obj);
213 }
214 com.google.ortools.graph.FlowArcProto other = (com.google.ortools.graph.FlowArcProto) obj;
215
216 if (hasTail() != other.hasTail()) return false;
217 if (hasTail()) {
218 if (getTail()
219 != other.getTail()) return false;
220 }
221 if (hasHead() != other.hasHead()) return false;
222 if (hasHead()) {
223 if (getHead()
224 != other.getHead()) return false;
225 }
226 if (hasCapacity() != other.hasCapacity()) return false;
227 if (hasCapacity()) {
228 if (getCapacity()
229 != other.getCapacity()) return false;
230 }
231 if (hasUnitCost() != other.hasUnitCost()) return false;
232 if (hasUnitCost()) {
233 if (getUnitCost()
234 != other.getUnitCost()) return false;
235 }
236 if (!getUnknownFields().equals(other.getUnknownFields())) return false;
237 return true;
238 }
239
240 @java.lang.Override
241 public int hashCode() {
242 if (memoizedHashCode != 0) {
243 return memoizedHashCode;
244 }
245 int hash = 41;
246 hash = (19 * hash) + getDescriptor().hashCode();
247 if (hasTail()) {
248 hash = (37 * hash) + TAIL_FIELD_NUMBER;
249 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
250 getTail());
251 }
252 if (hasHead()) {
253 hash = (37 * hash) + HEAD_FIELD_NUMBER;
254 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
255 getHead());
256 }
257 if (hasCapacity()) {
258 hash = (37 * hash) + CAPACITY_FIELD_NUMBER;
259 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
260 getCapacity());
261 }
262 if (hasUnitCost()) {
263 hash = (37 * hash) + UNIT_COST_FIELD_NUMBER;
264 hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
265 getUnitCost());
266 }
267 hash = (29 * hash) + getUnknownFields().hashCode();
268 memoizedHashCode = hash;
269 return hash;
270 }
271
273 java.nio.ByteBuffer data)
274 throws com.google.protobuf.InvalidProtocolBufferException {
275 return PARSER.parseFrom(data);
276 }
278 java.nio.ByteBuffer data,
279 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
280 throws com.google.protobuf.InvalidProtocolBufferException {
281 return PARSER.parseFrom(data, extensionRegistry);
282 }
284 com.google.protobuf.ByteString data)
285 throws com.google.protobuf.InvalidProtocolBufferException {
286 return PARSER.parseFrom(data);
287 }
289 com.google.protobuf.ByteString data,
290 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
291 throws com.google.protobuf.InvalidProtocolBufferException {
292 return PARSER.parseFrom(data, extensionRegistry);
293 }
295 throws com.google.protobuf.InvalidProtocolBufferException {
296 return PARSER.parseFrom(data);
297 }
299 byte[] data,
300 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
301 throws com.google.protobuf.InvalidProtocolBufferException {
302 return PARSER.parseFrom(data, extensionRegistry);
303 }
304 public static com.google.ortools.graph.FlowArcProto parseFrom(java.io.InputStream input)
305 throws java.io.IOException {
306 return com.google.protobuf.GeneratedMessageV3
307 .parseWithIOException(PARSER, input);
308 }
310 java.io.InputStream input,
311 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
312 throws java.io.IOException {
313 return com.google.protobuf.GeneratedMessageV3
314 .parseWithIOException(PARSER, input, extensionRegistry);
315 }
316
317 public static com.google.ortools.graph.FlowArcProto parseDelimitedFrom(java.io.InputStream input)
318 throws java.io.IOException {
319 return com.google.protobuf.GeneratedMessageV3
320 .parseDelimitedWithIOException(PARSER, input);
321 }
322
324 java.io.InputStream input,
325 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
326 throws java.io.IOException {
327 return com.google.protobuf.GeneratedMessageV3
328 .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
329 }
331 com.google.protobuf.CodedInputStream input)
332 throws java.io.IOException {
333 return com.google.protobuf.GeneratedMessageV3
334 .parseWithIOException(PARSER, input);
335 }
337 com.google.protobuf.CodedInputStream input,
338 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
339 throws java.io.IOException {
340 return com.google.protobuf.GeneratedMessageV3
341 .parseWithIOException(PARSER, input, extensionRegistry);
342 }
343
344 @java.lang.Override
345 public Builder newBuilderForType() { return newBuilder(); }
346 public static Builder newBuilder() {
347 return DEFAULT_INSTANCE.toBuilder();
348 }
349 public static Builder newBuilder(com.google.ortools.graph.FlowArcProto prototype) {
350 return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
351 }
352 @java.lang.Override
354 return this == DEFAULT_INSTANCE
355 ? new Builder() : new Builder().mergeFrom(this);
356 }
357
358 @java.lang.Override
360 com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
361 Builder builder = new Builder(parent);
362 return builder;
363 }
367 public static final class Builder extends
368 com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
369 // @@protoc_insertion_point(builder_implements:operations_research.FlowArcProto)
370 com.google.ortools.graph.FlowArcProtoOrBuilder {
371 public static final com.google.protobuf.Descriptors.Descriptor
373 return com.google.ortools.graph.FlowProblem.internal_static_operations_research_FlowArcProto_descriptor;
374 }
375
376 @java.lang.Override
377 protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
379 return com.google.ortools.graph.FlowProblem.internal_static_operations_research_FlowArcProto_fieldAccessorTable
380 .ensureFieldAccessorsInitialized(
381 com.google.ortools.graph.FlowArcProto.class, com.google.ortools.graph.FlowArcProto.Builder.class);
382 }
383
384 // Construct using com.google.ortools.graph.FlowArcProto.newBuilder()
385 private Builder() {
386
387 }
388
389 private Builder(
390 com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
391 super(parent);
392
393 }
394 @java.lang.Override
395 public Builder clear() {
396 super.clear();
397 bitField0_ = 0;
398 tail_ = 0L;
399 head_ = 0L;
400 capacity_ = 1L;
401 unitCost_ = 0L;
402 return this;
403 }
404
405 @java.lang.Override
406 public com.google.protobuf.Descriptors.Descriptor
408 return com.google.ortools.graph.FlowProblem.internal_static_operations_research_FlowArcProto_descriptor;
409 }
410
411 @java.lang.Override
413 return com.google.ortools.graph.FlowArcProto.getDefaultInstance();
414 }
415
416 @java.lang.Override
419 if (!result.isInitialized()) {
420 throw newUninitializedMessageException(result);
421 }
422 return result;
423 }
424
425 @java.lang.Override
427 com.google.ortools.graph.FlowArcProto result = new com.google.ortools.graph.FlowArcProto(this);
428 if (bitField0_ != 0) { buildPartial0(result); }
429 onBuilt();
430 return result;
431 }
432
433 private void buildPartial0(com.google.ortools.graph.FlowArcProto result) {
434 int from_bitField0_ = bitField0_;
435 int to_bitField0_ = 0;
436 if (((from_bitField0_ & 0x00000001) != 0)) {
437 result.tail_ = tail_;
438 to_bitField0_ |= 0x00000001;
439 }
440 if (((from_bitField0_ & 0x00000002) != 0)) {
441 result.head_ = head_;
442 to_bitField0_ |= 0x00000002;
443 }
444 if (((from_bitField0_ & 0x00000004) != 0)) {
445 result.capacity_ = capacity_;
446 to_bitField0_ |= 0x00000004;
447 }
448 if (((from_bitField0_ & 0x00000008) != 0)) {
449 result.unitCost_ = unitCost_;
450 to_bitField0_ |= 0x00000008;
451 }
452 result.bitField0_ |= to_bitField0_;
453 }
454
455 @java.lang.Override
456 public Builder clone() {
457 return super.clone();
458 }
459 @java.lang.Override
461 com.google.protobuf.Descriptors.FieldDescriptor field,
462 java.lang.Object value) {
463 return super.setField(field, value);
464 }
465 @java.lang.Override
467 com.google.protobuf.Descriptors.FieldDescriptor field) {
468 return super.clearField(field);
469 }
470 @java.lang.Override
472 com.google.protobuf.Descriptors.OneofDescriptor oneof) {
473 return super.clearOneof(oneof);
474 }
475 @java.lang.Override
477 com.google.protobuf.Descriptors.FieldDescriptor field,
478 int index, java.lang.Object value) {
479 return super.setRepeatedField(field, index, value);
480 }
481 @java.lang.Override
483 com.google.protobuf.Descriptors.FieldDescriptor field,
484 java.lang.Object value) {
485 return super.addRepeatedField(field, value);
486 }
487 @java.lang.Override
488 public Builder mergeFrom(com.google.protobuf.Message other) {
489 if (other instanceof com.google.ortools.graph.FlowArcProto) {
490 return mergeFrom((com.google.ortools.graph.FlowArcProto)other);
491 } else {
492 super.mergeFrom(other);
493 return this;
494 }
495 }
496
497 public Builder mergeFrom(com.google.ortools.graph.FlowArcProto other) {
498 if (other == com.google.ortools.graph.FlowArcProto.getDefaultInstance()) return this;
499 if (other.hasTail()) {
500 setTail(other.getTail());
501 }
502 if (other.hasHead()) {
503 setHead(other.getHead());
504 }
505 if (other.hasCapacity()) {
506 setCapacity(other.getCapacity());
507 }
508 if (other.hasUnitCost()) {
509 setUnitCost(other.getUnitCost());
510 }
511 this.mergeUnknownFields(other.getUnknownFields());
512 onChanged();
513 return this;
514 }
515
516 @java.lang.Override
517 public final boolean isInitialized() {
518 return true;
519 }
520
521 @java.lang.Override
523 com.google.protobuf.CodedInputStream input,
524 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
525 throws java.io.IOException {
526 if (extensionRegistry == null) {
527 throw new java.lang.NullPointerException();
528 }
529 try {
530 boolean done = false;
531 while (!done) {
532 int tag = input.readTag();
533 switch (tag) {
534 case 0:
535 done = true;
536 break;
537 case 8: {
538 tail_ = input.readInt64();
539 bitField0_ |= 0x00000001;
540 break;
541 } // case 8
542 case 16: {
543 head_ = input.readInt64();
544 bitField0_ |= 0x00000002;
545 break;
546 } // case 16
547 case 24: {
548 capacity_ = input.readInt64();
549 bitField0_ |= 0x00000004;
550 break;
551 } // case 24
552 case 32: {
553 unitCost_ = input.readInt64();
554 bitField0_ |= 0x00000008;
555 break;
556 } // case 32
557 default: {
558 if (!super.parseUnknownField(input, extensionRegistry, tag)) {
559 done = true; // was an endgroup tag
560 }
561 break;
562 } // default:
563 } // switch (tag)
564 } // while (!done)
565 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
566 throw e.unwrapIOException();
567 } finally {
568 onChanged();
569 } // finally
570 return this;
571 }
572 private int bitField0_;
573
574 private long tail_ ;
584 @java.lang.Override
585 public boolean hasTail() {
586 return ((bitField0_ & 0x00000001) != 0);
587 }
597 @java.lang.Override
598 public long getTail() {
599 return tail_;
600 }
611 public Builder setTail(long value) {
612
613 tail_ = value;
614 bitField0_ |= 0x00000001;
615 onChanged();
616 return this;
617 }
628 bitField0_ = (bitField0_ & ~0x00000001);
629 tail_ = 0L;
630 onChanged();
631 return this;
632 }
633
634 private long head_ ;
639 @java.lang.Override
640 public boolean hasHead() {
641 return ((bitField0_ & 0x00000002) != 0);
642 }
647 @java.lang.Override
648 public long getHead() {
649 return head_;
650 }
656 public Builder setHead(long value) {
657
658 head_ = value;
659 bitField0_ |= 0x00000002;
660 onChanged();
661 return this;
662 }
668 bitField0_ = (bitField0_ & ~0x00000002);
669 head_ = 0L;
670 onChanged();
671 return this;
672 }
673
674 private long capacity_ = 1L;
684 @java.lang.Override
685 public boolean hasCapacity() {
686 return ((bitField0_ & 0x00000004) != 0);
687 }
697 @java.lang.Override
698 public long getCapacity() {
699 return capacity_;
700 }
711 public Builder setCapacity(long value) {
712
713 capacity_ = value;
714 bitField0_ |= 0x00000004;
715 onChanged();
716 return this;
717 }
728 bitField0_ = (bitField0_ & ~0x00000004);
729 capacity_ = 1L;
730 onChanged();
731 return this;
732 }
733
734 private long unitCost_ ;
744 @java.lang.Override
745 public boolean hasUnitCost() {
746 return ((bitField0_ & 0x00000008) != 0);
747 }
757 @java.lang.Override
758 public long getUnitCost() {
759 return unitCost_;
760 }
771 public Builder setUnitCost(long value) {
772
773 unitCost_ = value;
774 bitField0_ |= 0x00000008;
775 onChanged();
776 return this;
777 }
788 bitField0_ = (bitField0_ & ~0x00000008);
789 unitCost_ = 0L;
790 onChanged();
791 return this;
792 }
793 @java.lang.Override
795 final com.google.protobuf.UnknownFieldSet unknownFields) {
796 return super.setUnknownFields(unknownFields);
797 }
798
799 @java.lang.Override
801 final com.google.protobuf.UnknownFieldSet unknownFields) {
802 return super.mergeUnknownFields(unknownFields);
803 }
804
805
806 // @@protoc_insertion_point(builder_scope:operations_research.FlowArcProto)
807 }
808
809 // @@protoc_insertion_point(class_scope:operations_research.FlowArcProto)
810 private static final com.google.ortools.graph.FlowArcProto DEFAULT_INSTANCE;
811 static {
812 DEFAULT_INSTANCE = new com.google.ortools.graph.FlowArcProto();
813 }
814
816 return DEFAULT_INSTANCE;
817 }
818
819 @java.lang.Deprecated public static final com.google.protobuf.Parser<FlowArcProto>
820 PARSER = new com.google.protobuf.AbstractParser<FlowArcProto>() {
821 @java.lang.Override
822 public FlowArcProto parsePartialFrom(
823 com.google.protobuf.CodedInputStream input,
824 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
825 throws com.google.protobuf.InvalidProtocolBufferException {
826 Builder builder = newBuilder();
827 try {
828 builder.mergeFrom(input, extensionRegistry);
829 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
830 throw e.setUnfinishedMessage(builder.buildPartial());
831 } catch (com.google.protobuf.UninitializedMessageException e) {
832 throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
833 } catch (java.io.IOException e) {
834 throw new com.google.protobuf.InvalidProtocolBufferException(e)
835 .setUnfinishedMessage(builder.buildPartial());
836 }
837 return builder.buildPartial();
838 }
839 };
840
841 public static com.google.protobuf.Parser<FlowArcProto> parser() {
842 return PARSER;
843 }
844
845 @java.lang.Override
846 public com.google.protobuf.Parser<FlowArcProto> getParserForType() {
847 return PARSER;
848 }
849
850 @java.lang.Override
852 return DEFAULT_INSTANCE;
853 }
854
855}
856
Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields)
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value)
com.google.ortools.graph.FlowArcProto buildPartial()
Builder mergeFrom(com.google.protobuf.Message other)
Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
com.google.ortools.graph.FlowArcProto getDefaultInstanceForType()
final Builder mergeUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields)
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value)
Builder mergeFrom(com.google.ortools.graph.FlowArcProto other)
Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
com.google.ortools.graph.FlowArcProto build()
com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
com.google.protobuf.Parser< FlowArcProto > getParserForType()
static com.google.ortools.graph.FlowArcProto parseFrom(com.google.protobuf.CodedInputStream input)
static com.google.ortools.graph.FlowArcProto parseFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static Builder newBuilder(com.google.ortools.graph.FlowArcProto prototype)
static com.google.ortools.graph.FlowArcProto parseFrom(java.io.InputStream input)
static com.google.ortools.graph.FlowArcProto parseFrom(byte[] data)
static com.google.ortools.graph.FlowArcProto parseFrom(java.nio.ByteBuffer data)
static com.google.ortools.graph.FlowArcProto parseFrom(com.google.protobuf.ByteString data)
static com.google.ortools.graph.FlowArcProto parseDelimitedFrom(java.io.InputStream input)
static com.google.ortools.graph.FlowArcProto parseFrom(java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.graph.FlowArcProto parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
static com.google.ortools.graph.FlowArcProto parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.graph.FlowArcProto parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
static com.google.ortools.graph.FlowArcProto parseDelimitedFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
boolean equals(final java.lang.Object obj)
void writeTo(com.google.protobuf.CodedOutputStream output)
static com.google.protobuf.Parser< FlowArcProto > parser()
com.google.ortools.graph.FlowArcProto getDefaultInstanceForType()
static com.google.ortools.graph.FlowArcProto getDefaultInstance()
static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
java.lang.Object newInstance(UnusedPrivateParameter unused)
static final com.google.protobuf.Parser< FlowArcProto > PARSER
Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)