1 // Generated by the protocol buffer compiler. DO NOT EDIT!
2 // source: Common.proto
4 package org.opendaylight.controller.protobuff.messages.common;
6 public final class NormalizedNodeMessages {
7 private NormalizedNodeMessages() {}
8 public static void registerAllExtensions(
9 com.google.protobuf.ExtensionRegistry registry) {
11 public interface AttributeOrBuilder
12 extends com.google.protobuf.MessageOrBuilder {
14 // required string name = 1;
16 * <code>required string name = 1;</code>
20 * <code>required string name = 1;</code>
22 java.lang.String getName();
24 * <code>required string name = 1;</code>
26 com.google.protobuf.ByteString
29 // optional string value = 2;
31 * <code>optional string value = 2;</code>
35 * <code>optional string value = 2;</code>
37 java.lang.String getValue();
39 * <code>optional string value = 2;</code>
41 com.google.protobuf.ByteString
44 // optional string type = 3;
46 * <code>optional string type = 3;</code>
50 * <code>optional string type = 3;</code>
52 java.lang.String getType();
54 * <code>optional string type = 3;</code>
56 com.google.protobuf.ByteString
60 * Protobuf type {@code org.opendaylight.controller.mdsal.Attribute}
62 public static final class Attribute extends
63 com.google.protobuf.GeneratedMessage
64 implements AttributeOrBuilder {
65 // Use Attribute.newBuilder() to construct.
66 private Attribute(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
68 this.unknownFields = builder.getUnknownFields();
70 private Attribute(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
72 private static final Attribute defaultInstance;
73 public static Attribute getDefaultInstance() {
74 return defaultInstance;
77 public Attribute getDefaultInstanceForType() {
78 return defaultInstance;
81 private final com.google.protobuf.UnknownFieldSet unknownFields;
83 public final com.google.protobuf.UnknownFieldSet
85 return this.unknownFields;
88 com.google.protobuf.CodedInputStream input,
89 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
90 throws com.google.protobuf.InvalidProtocolBufferException {
92 int mutable_bitField0_ = 0;
93 com.google.protobuf.UnknownFieldSet.Builder unknownFields =
94 com.google.protobuf.UnknownFieldSet.newBuilder();
98 int tag = input.readTag();
104 if (!parseUnknownField(input, unknownFields,
105 extensionRegistry, tag)) {
111 bitField0_ |= 0x00000001;
112 name_ = input.readBytes();
116 bitField0_ |= 0x00000002;
117 value_ = input.readBytes();
121 bitField0_ |= 0x00000004;
122 type_ = input.readBytes();
127 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
128 throw e.setUnfinishedMessage(this);
129 } catch (java.io.IOException e) {
130 throw new com.google.protobuf.InvalidProtocolBufferException(
131 e.getMessage()).setUnfinishedMessage(this);
133 this.unknownFields = unknownFields.build();
134 makeExtensionsImmutable();
137 public static final com.google.protobuf.Descriptors.Descriptor
139 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_Attribute_descriptor;
142 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
143 internalGetFieldAccessorTable() {
144 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_Attribute_fieldAccessorTable
145 .ensureFieldAccessorsInitialized(
146 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.class, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.Builder.class);
149 public static com.google.protobuf.Parser<Attribute> PARSER =
150 new com.google.protobuf.AbstractParser<Attribute>() {
151 public Attribute parsePartialFrom(
152 com.google.protobuf.CodedInputStream input,
153 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
154 throws com.google.protobuf.InvalidProtocolBufferException {
155 return new Attribute(input, extensionRegistry);
160 public com.google.protobuf.Parser<Attribute> getParserForType() {
164 private int bitField0_;
165 // required string name = 1;
166 public static final int NAME_FIELD_NUMBER = 1;
167 private java.lang.Object name_;
169 * <code>required string name = 1;</code>
171 public boolean hasName() {
172 return ((bitField0_ & 0x00000001) == 0x00000001);
175 * <code>required string name = 1;</code>
177 public java.lang.String getName() {
178 java.lang.Object ref = name_;
179 if (ref instanceof java.lang.String) {
180 return (java.lang.String) ref;
182 com.google.protobuf.ByteString bs =
183 (com.google.protobuf.ByteString) ref;
184 java.lang.String s = bs.toStringUtf8();
185 if (bs.isValidUtf8()) {
192 * <code>required string name = 1;</code>
194 public com.google.protobuf.ByteString
196 java.lang.Object ref = name_;
197 if (ref instanceof java.lang.String) {
198 com.google.protobuf.ByteString b =
199 com.google.protobuf.ByteString.copyFromUtf8(
200 (java.lang.String) ref);
204 return (com.google.protobuf.ByteString) ref;
208 // optional string value = 2;
209 public static final int VALUE_FIELD_NUMBER = 2;
210 private java.lang.Object value_;
212 * <code>optional string value = 2;</code>
214 public boolean hasValue() {
215 return ((bitField0_ & 0x00000002) == 0x00000002);
218 * <code>optional string value = 2;</code>
220 public java.lang.String getValue() {
221 java.lang.Object ref = value_;
222 if (ref instanceof java.lang.String) {
223 return (java.lang.String) ref;
225 com.google.protobuf.ByteString bs =
226 (com.google.protobuf.ByteString) ref;
227 java.lang.String s = bs.toStringUtf8();
228 if (bs.isValidUtf8()) {
235 * <code>optional string value = 2;</code>
237 public com.google.protobuf.ByteString
239 java.lang.Object ref = value_;
240 if (ref instanceof java.lang.String) {
241 com.google.protobuf.ByteString b =
242 com.google.protobuf.ByteString.copyFromUtf8(
243 (java.lang.String) ref);
247 return (com.google.protobuf.ByteString) ref;
251 // optional string type = 3;
252 public static final int TYPE_FIELD_NUMBER = 3;
253 private java.lang.Object type_;
255 * <code>optional string type = 3;</code>
257 public boolean hasType() {
258 return ((bitField0_ & 0x00000004) == 0x00000004);
261 * <code>optional string type = 3;</code>
263 public java.lang.String getType() {
264 java.lang.Object ref = type_;
265 if (ref instanceof java.lang.String) {
266 return (java.lang.String) ref;
268 com.google.protobuf.ByteString bs =
269 (com.google.protobuf.ByteString) ref;
270 java.lang.String s = bs.toStringUtf8();
271 if (bs.isValidUtf8()) {
278 * <code>optional string type = 3;</code>
280 public com.google.protobuf.ByteString
282 java.lang.Object ref = type_;
283 if (ref instanceof java.lang.String) {
284 com.google.protobuf.ByteString b =
285 com.google.protobuf.ByteString.copyFromUtf8(
286 (java.lang.String) ref);
290 return (com.google.protobuf.ByteString) ref;
294 private void initFields() {
299 private byte memoizedIsInitialized = -1;
300 public final boolean isInitialized() {
301 byte isInitialized = memoizedIsInitialized;
302 if (isInitialized != -1) return isInitialized == 1;
305 memoizedIsInitialized = 0;
308 memoizedIsInitialized = 1;
312 public void writeTo(com.google.protobuf.CodedOutputStream output)
313 throws java.io.IOException {
315 if (((bitField0_ & 0x00000001) == 0x00000001)) {
316 output.writeBytes(1, getNameBytes());
318 if (((bitField0_ & 0x00000002) == 0x00000002)) {
319 output.writeBytes(2, getValueBytes());
321 if (((bitField0_ & 0x00000004) == 0x00000004)) {
322 output.writeBytes(3, getTypeBytes());
324 getUnknownFields().writeTo(output);
327 private int memoizedSerializedSize = -1;
328 public int getSerializedSize() {
329 int size = memoizedSerializedSize;
330 if (size != -1) return size;
333 if (((bitField0_ & 0x00000001) == 0x00000001)) {
334 size += com.google.protobuf.CodedOutputStream
335 .computeBytesSize(1, getNameBytes());
337 if (((bitField0_ & 0x00000002) == 0x00000002)) {
338 size += com.google.protobuf.CodedOutputStream
339 .computeBytesSize(2, getValueBytes());
341 if (((bitField0_ & 0x00000004) == 0x00000004)) {
342 size += com.google.protobuf.CodedOutputStream
343 .computeBytesSize(3, getTypeBytes());
345 size += getUnknownFields().getSerializedSize();
346 memoizedSerializedSize = size;
350 private static final long serialVersionUID = 0L;
352 protected java.lang.Object writeReplace()
353 throws java.io.ObjectStreamException {
354 return super.writeReplace();
357 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(
358 com.google.protobuf.ByteString data)
359 throws com.google.protobuf.InvalidProtocolBufferException {
360 return PARSER.parseFrom(data);
362 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(
363 com.google.protobuf.ByteString data,
364 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
365 throws com.google.protobuf.InvalidProtocolBufferException {
366 return PARSER.parseFrom(data, extensionRegistry);
368 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(byte[] data)
369 throws com.google.protobuf.InvalidProtocolBufferException {
370 return PARSER.parseFrom(data);
372 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(
374 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
375 throws com.google.protobuf.InvalidProtocolBufferException {
376 return PARSER.parseFrom(data, extensionRegistry);
378 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(java.io.InputStream input)
379 throws java.io.IOException {
380 return PARSER.parseFrom(input);
382 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(
383 java.io.InputStream input,
384 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
385 throws java.io.IOException {
386 return PARSER.parseFrom(input, extensionRegistry);
388 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseDelimitedFrom(java.io.InputStream input)
389 throws java.io.IOException {
390 return PARSER.parseDelimitedFrom(input);
392 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseDelimitedFrom(
393 java.io.InputStream input,
394 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
395 throws java.io.IOException {
396 return PARSER.parseDelimitedFrom(input, extensionRegistry);
398 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(
399 com.google.protobuf.CodedInputStream input)
400 throws java.io.IOException {
401 return PARSER.parseFrom(input);
403 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parseFrom(
404 com.google.protobuf.CodedInputStream input,
405 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
406 throws java.io.IOException {
407 return PARSER.parseFrom(input, extensionRegistry);
410 public static Builder newBuilder() { return Builder.create(); }
411 public Builder newBuilderForType() { return newBuilder(); }
412 public static Builder newBuilder(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute prototype) {
413 return newBuilder().mergeFrom(prototype);
415 public Builder toBuilder() { return newBuilder(this); }
418 protected Builder newBuilderForType(
419 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
420 Builder builder = new Builder(parent);
424 * Protobuf type {@code org.opendaylight.controller.mdsal.Attribute}
426 public static final class Builder extends
427 com.google.protobuf.GeneratedMessage.Builder<Builder>
428 implements org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.AttributeOrBuilder {
429 public static final com.google.protobuf.Descriptors.Descriptor
431 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_Attribute_descriptor;
434 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
435 internalGetFieldAccessorTable() {
436 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_Attribute_fieldAccessorTable
437 .ensureFieldAccessorsInitialized(
438 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.class, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.Builder.class);
441 // Construct using org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.newBuilder()
443 maybeForceBuilderInitialization();
447 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
449 maybeForceBuilderInitialization();
451 private void maybeForceBuilderInitialization() {
452 if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
455 private static Builder create() {
456 return new Builder();
459 public Builder clear() {
462 bitField0_ = (bitField0_ & ~0x00000001);
464 bitField0_ = (bitField0_ & ~0x00000002);
466 bitField0_ = (bitField0_ & ~0x00000004);
470 public Builder clone() {
471 return create().mergeFrom(buildPartial());
474 public com.google.protobuf.Descriptors.Descriptor
475 getDescriptorForType() {
476 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_Attribute_descriptor;
479 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute getDefaultInstanceForType() {
480 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.getDefaultInstance();
483 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute build() {
484 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute result = buildPartial();
485 if (!result.isInitialized()) {
486 throw newUninitializedMessageException(result);
491 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute buildPartial() {
492 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute result = new org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute(this);
493 int from_bitField0_ = bitField0_;
494 int to_bitField0_ = 0;
495 if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
496 to_bitField0_ |= 0x00000001;
498 result.name_ = name_;
499 if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
500 to_bitField0_ |= 0x00000002;
502 result.value_ = value_;
503 if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
504 to_bitField0_ |= 0x00000004;
506 result.type_ = type_;
507 result.bitField0_ = to_bitField0_;
512 public Builder mergeFrom(com.google.protobuf.Message other) {
513 if (other instanceof org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute) {
514 return mergeFrom((org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute)other);
516 super.mergeFrom(other);
521 public Builder mergeFrom(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute other) {
522 if (other == org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute.getDefaultInstance()) return this;
523 if (other.hasName()) {
524 bitField0_ |= 0x00000001;
528 if (other.hasValue()) {
529 bitField0_ |= 0x00000002;
530 value_ = other.value_;
533 if (other.hasType()) {
534 bitField0_ |= 0x00000004;
538 this.mergeUnknownFields(other.getUnknownFields());
542 public final boolean isInitialized() {
550 public Builder mergeFrom(
551 com.google.protobuf.CodedInputStream input,
552 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
553 throws java.io.IOException {
554 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute parsedMessage = null;
556 parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
557 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
558 parsedMessage = (org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute) e.getUnfinishedMessage();
561 if (parsedMessage != null) {
562 mergeFrom(parsedMessage);
567 private int bitField0_;
569 // required string name = 1;
570 private java.lang.Object name_ = "";
572 * <code>required string name = 1;</code>
574 public boolean hasName() {
575 return ((bitField0_ & 0x00000001) == 0x00000001);
578 * <code>required string name = 1;</code>
580 public java.lang.String getName() {
581 java.lang.Object ref = name_;
582 if (!(ref instanceof java.lang.String)) {
583 java.lang.String s = ((com.google.protobuf.ByteString) ref)
588 return (java.lang.String) ref;
592 * <code>required string name = 1;</code>
594 public com.google.protobuf.ByteString
596 java.lang.Object ref = name_;
597 if (ref instanceof String) {
598 com.google.protobuf.ByteString b =
599 com.google.protobuf.ByteString.copyFromUtf8(
600 (java.lang.String) ref);
604 return (com.google.protobuf.ByteString) ref;
608 * <code>required string name = 1;</code>
610 public Builder setName(
611 java.lang.String value) {
613 throw new NullPointerException();
615 bitField0_ |= 0x00000001;
621 * <code>required string name = 1;</code>
623 public Builder clearName() {
624 bitField0_ = (bitField0_ & ~0x00000001);
625 name_ = getDefaultInstance().getName();
630 * <code>required string name = 1;</code>
632 public Builder setNameBytes(
633 com.google.protobuf.ByteString value) {
635 throw new NullPointerException();
637 bitField0_ |= 0x00000001;
643 // optional string value = 2;
644 private java.lang.Object value_ = "";
646 * <code>optional string value = 2;</code>
648 public boolean hasValue() {
649 return ((bitField0_ & 0x00000002) == 0x00000002);
652 * <code>optional string value = 2;</code>
654 public java.lang.String getValue() {
655 java.lang.Object ref = value_;
656 if (!(ref instanceof java.lang.String)) {
657 java.lang.String s = ((com.google.protobuf.ByteString) ref)
662 return (java.lang.String) ref;
666 * <code>optional string value = 2;</code>
668 public com.google.protobuf.ByteString
670 java.lang.Object ref = value_;
671 if (ref instanceof String) {
672 com.google.protobuf.ByteString b =
673 com.google.protobuf.ByteString.copyFromUtf8(
674 (java.lang.String) ref);
678 return (com.google.protobuf.ByteString) ref;
682 * <code>optional string value = 2;</code>
684 public Builder setValue(
685 java.lang.String value) {
687 throw new NullPointerException();
689 bitField0_ |= 0x00000002;
695 * <code>optional string value = 2;</code>
697 public Builder clearValue() {
698 bitField0_ = (bitField0_ & ~0x00000002);
699 value_ = getDefaultInstance().getValue();
704 * <code>optional string value = 2;</code>
706 public Builder setValueBytes(
707 com.google.protobuf.ByteString value) {
709 throw new NullPointerException();
711 bitField0_ |= 0x00000002;
717 // optional string type = 3;
718 private java.lang.Object type_ = "";
720 * <code>optional string type = 3;</code>
722 public boolean hasType() {
723 return ((bitField0_ & 0x00000004) == 0x00000004);
726 * <code>optional string type = 3;</code>
728 public java.lang.String getType() {
729 java.lang.Object ref = type_;
730 if (!(ref instanceof java.lang.String)) {
731 java.lang.String s = ((com.google.protobuf.ByteString) ref)
736 return (java.lang.String) ref;
740 * <code>optional string type = 3;</code>
742 public com.google.protobuf.ByteString
744 java.lang.Object ref = type_;
745 if (ref instanceof String) {
746 com.google.protobuf.ByteString b =
747 com.google.protobuf.ByteString.copyFromUtf8(
748 (java.lang.String) ref);
752 return (com.google.protobuf.ByteString) ref;
756 * <code>optional string type = 3;</code>
758 public Builder setType(
759 java.lang.String value) {
761 throw new NullPointerException();
763 bitField0_ |= 0x00000004;
769 * <code>optional string type = 3;</code>
771 public Builder clearType() {
772 bitField0_ = (bitField0_ & ~0x00000004);
773 type_ = getDefaultInstance().getType();
778 * <code>optional string type = 3;</code>
780 public Builder setTypeBytes(
781 com.google.protobuf.ByteString value) {
783 throw new NullPointerException();
785 bitField0_ |= 0x00000004;
791 // @@protoc_insertion_point(builder_scope:org.opendaylight.controller.mdsal.Attribute)
795 defaultInstance = new Attribute(true);
796 defaultInstance.initFields();
799 // @@protoc_insertion_point(class_scope:org.opendaylight.controller.mdsal.Attribute)
802 public interface PathArgumentAttributeOrBuilder
803 extends com.google.protobuf.MessageOrBuilder {
805 // optional .org.opendaylight.controller.mdsal.QName name = 1;
807 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
811 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
813 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName getName();
815 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
817 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder getNameOrBuilder();
819 // optional string value = 2;
821 * <code>optional string value = 2;</code>
825 * <code>optional string value = 2;</code>
827 java.lang.String getValue();
829 * <code>optional string value = 2;</code>
831 com.google.protobuf.ByteString
834 // optional int32 type = 3;
836 * <code>optional int32 type = 3;</code>
840 * <code>optional int32 type = 3;</code>
845 * Protobuf type {@code org.opendaylight.controller.mdsal.PathArgumentAttribute}
847 public static final class PathArgumentAttribute extends
848 com.google.protobuf.GeneratedMessage
849 implements PathArgumentAttributeOrBuilder {
850 // Use PathArgumentAttribute.newBuilder() to construct.
851 private PathArgumentAttribute(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
853 this.unknownFields = builder.getUnknownFields();
855 private PathArgumentAttribute(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
857 private static final PathArgumentAttribute defaultInstance;
858 public static PathArgumentAttribute getDefaultInstance() {
859 return defaultInstance;
862 public PathArgumentAttribute getDefaultInstanceForType() {
863 return defaultInstance;
866 private final com.google.protobuf.UnknownFieldSet unknownFields;
868 public final com.google.protobuf.UnknownFieldSet
870 return this.unknownFields;
872 private PathArgumentAttribute(
873 com.google.protobuf.CodedInputStream input,
874 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
875 throws com.google.protobuf.InvalidProtocolBufferException {
877 int mutable_bitField0_ = 0;
878 com.google.protobuf.UnknownFieldSet.Builder unknownFields =
879 com.google.protobuf.UnknownFieldSet.newBuilder();
881 boolean done = false;
883 int tag = input.readTag();
889 if (!parseUnknownField(input, unknownFields,
890 extensionRegistry, tag)) {
896 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder subBuilder = null;
897 if (((bitField0_ & 0x00000001) == 0x00000001)) {
898 subBuilder = name_.toBuilder();
900 name_ = input.readMessage(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.PARSER, extensionRegistry);
901 if (subBuilder != null) {
902 subBuilder.mergeFrom(name_);
903 name_ = subBuilder.buildPartial();
905 bitField0_ |= 0x00000001;
909 bitField0_ |= 0x00000002;
910 value_ = input.readBytes();
914 bitField0_ |= 0x00000004;
915 type_ = input.readInt32();
920 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
921 throw e.setUnfinishedMessage(this);
922 } catch (java.io.IOException e) {
923 throw new com.google.protobuf.InvalidProtocolBufferException(
924 e.getMessage()).setUnfinishedMessage(this);
926 this.unknownFields = unknownFields.build();
927 makeExtensionsImmutable();
930 public static final com.google.protobuf.Descriptors.Descriptor
932 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_PathArgumentAttribute_descriptor;
935 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
936 internalGetFieldAccessorTable() {
937 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_PathArgumentAttribute_fieldAccessorTable
938 .ensureFieldAccessorsInitialized(
939 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.class, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.Builder.class);
942 public static com.google.protobuf.Parser<PathArgumentAttribute> PARSER =
943 new com.google.protobuf.AbstractParser<PathArgumentAttribute>() {
944 public PathArgumentAttribute parsePartialFrom(
945 com.google.protobuf.CodedInputStream input,
946 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
947 throws com.google.protobuf.InvalidProtocolBufferException {
948 return new PathArgumentAttribute(input, extensionRegistry);
953 public com.google.protobuf.Parser<PathArgumentAttribute> getParserForType() {
957 private int bitField0_;
958 // optional .org.opendaylight.controller.mdsal.QName name = 1;
959 public static final int NAME_FIELD_NUMBER = 1;
960 private org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName name_;
962 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
964 public boolean hasName() {
965 return ((bitField0_ & 0x00000001) == 0x00000001);
968 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
970 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName getName() {
974 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
976 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder getNameOrBuilder() {
980 // optional string value = 2;
981 public static final int VALUE_FIELD_NUMBER = 2;
982 private java.lang.Object value_;
984 * <code>optional string value = 2;</code>
986 public boolean hasValue() {
987 return ((bitField0_ & 0x00000002) == 0x00000002);
990 * <code>optional string value = 2;</code>
992 public java.lang.String getValue() {
993 java.lang.Object ref = value_;
994 if (ref instanceof java.lang.String) {
995 return (java.lang.String) ref;
997 com.google.protobuf.ByteString bs =
998 (com.google.protobuf.ByteString) ref;
999 java.lang.String s = bs.toStringUtf8();
1000 if (bs.isValidUtf8()) {
1007 * <code>optional string value = 2;</code>
1009 public com.google.protobuf.ByteString
1011 java.lang.Object ref = value_;
1012 if (ref instanceof java.lang.String) {
1013 com.google.protobuf.ByteString b =
1014 com.google.protobuf.ByteString.copyFromUtf8(
1015 (java.lang.String) ref);
1019 return (com.google.protobuf.ByteString) ref;
1023 // optional int32 type = 3;
1024 public static final int TYPE_FIELD_NUMBER = 3;
1027 * <code>optional int32 type = 3;</code>
1029 public boolean hasType() {
1030 return ((bitField0_ & 0x00000004) == 0x00000004);
1033 * <code>optional int32 type = 3;</code>
1035 public int getType() {
1039 private void initFields() {
1040 name_ = org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance();
1044 private byte memoizedIsInitialized = -1;
1045 public final boolean isInitialized() {
1046 byte isInitialized = memoizedIsInitialized;
1047 if (isInitialized != -1) return isInitialized == 1;
1049 memoizedIsInitialized = 1;
1053 public void writeTo(com.google.protobuf.CodedOutputStream output)
1054 throws java.io.IOException {
1055 getSerializedSize();
1056 if (((bitField0_ & 0x00000001) == 0x00000001)) {
1057 output.writeMessage(1, name_);
1059 if (((bitField0_ & 0x00000002) == 0x00000002)) {
1060 output.writeBytes(2, getValueBytes());
1062 if (((bitField0_ & 0x00000004) == 0x00000004)) {
1063 output.writeInt32(3, type_);
1065 getUnknownFields().writeTo(output);
1068 private int memoizedSerializedSize = -1;
1069 public int getSerializedSize() {
1070 int size = memoizedSerializedSize;
1071 if (size != -1) return size;
1074 if (((bitField0_ & 0x00000001) == 0x00000001)) {
1075 size += com.google.protobuf.CodedOutputStream
1076 .computeMessageSize(1, name_);
1078 if (((bitField0_ & 0x00000002) == 0x00000002)) {
1079 size += com.google.protobuf.CodedOutputStream
1080 .computeBytesSize(2, getValueBytes());
1082 if (((bitField0_ & 0x00000004) == 0x00000004)) {
1083 size += com.google.protobuf.CodedOutputStream
1084 .computeInt32Size(3, type_);
1086 size += getUnknownFields().getSerializedSize();
1087 memoizedSerializedSize = size;
1091 private static final long serialVersionUID = 0L;
1093 protected java.lang.Object writeReplace()
1094 throws java.io.ObjectStreamException {
1095 return super.writeReplace();
1098 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(
1099 com.google.protobuf.ByteString data)
1100 throws com.google.protobuf.InvalidProtocolBufferException {
1101 return PARSER.parseFrom(data);
1103 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(
1104 com.google.protobuf.ByteString data,
1105 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1106 throws com.google.protobuf.InvalidProtocolBufferException {
1107 return PARSER.parseFrom(data, extensionRegistry);
1109 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(byte[] data)
1110 throws com.google.protobuf.InvalidProtocolBufferException {
1111 return PARSER.parseFrom(data);
1113 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(
1115 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1116 throws com.google.protobuf.InvalidProtocolBufferException {
1117 return PARSER.parseFrom(data, extensionRegistry);
1119 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(java.io.InputStream input)
1120 throws java.io.IOException {
1121 return PARSER.parseFrom(input);
1123 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(
1124 java.io.InputStream input,
1125 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1126 throws java.io.IOException {
1127 return PARSER.parseFrom(input, extensionRegistry);
1129 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseDelimitedFrom(java.io.InputStream input)
1130 throws java.io.IOException {
1131 return PARSER.parseDelimitedFrom(input);
1133 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseDelimitedFrom(
1134 java.io.InputStream input,
1135 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1136 throws java.io.IOException {
1137 return PARSER.parseDelimitedFrom(input, extensionRegistry);
1139 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(
1140 com.google.protobuf.CodedInputStream input)
1141 throws java.io.IOException {
1142 return PARSER.parseFrom(input);
1144 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parseFrom(
1145 com.google.protobuf.CodedInputStream input,
1146 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1147 throws java.io.IOException {
1148 return PARSER.parseFrom(input, extensionRegistry);
1151 public static Builder newBuilder() { return Builder.create(); }
1152 public Builder newBuilderForType() { return newBuilder(); }
1153 public static Builder newBuilder(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute prototype) {
1154 return newBuilder().mergeFrom(prototype);
1156 public Builder toBuilder() { return newBuilder(this); }
1159 protected Builder newBuilderForType(
1160 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
1161 Builder builder = new Builder(parent);
1165 * Protobuf type {@code org.opendaylight.controller.mdsal.PathArgumentAttribute}
1167 public static final class Builder extends
1168 com.google.protobuf.GeneratedMessage.Builder<Builder>
1169 implements org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttributeOrBuilder {
1170 public static final com.google.protobuf.Descriptors.Descriptor
1172 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_PathArgumentAttribute_descriptor;
1175 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
1176 internalGetFieldAccessorTable() {
1177 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_PathArgumentAttribute_fieldAccessorTable
1178 .ensureFieldAccessorsInitialized(
1179 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.class, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.Builder.class);
1182 // Construct using org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.newBuilder()
1184 maybeForceBuilderInitialization();
1188 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
1190 maybeForceBuilderInitialization();
1192 private void maybeForceBuilderInitialization() {
1193 if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
1194 getNameFieldBuilder();
1197 private static Builder create() {
1198 return new Builder();
1201 public Builder clear() {
1203 if (nameBuilder_ == null) {
1204 name_ = org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance();
1206 nameBuilder_.clear();
1208 bitField0_ = (bitField0_ & ~0x00000001);
1210 bitField0_ = (bitField0_ & ~0x00000002);
1212 bitField0_ = (bitField0_ & ~0x00000004);
1216 public Builder clone() {
1217 return create().mergeFrom(buildPartial());
1220 public com.google.protobuf.Descriptors.Descriptor
1221 getDescriptorForType() {
1222 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_PathArgumentAttribute_descriptor;
1225 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute getDefaultInstanceForType() {
1226 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.getDefaultInstance();
1229 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute build() {
1230 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute result = buildPartial();
1231 if (!result.isInitialized()) {
1232 throw newUninitializedMessageException(result);
1237 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute buildPartial() {
1238 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute result = new org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute(this);
1239 int from_bitField0_ = bitField0_;
1240 int to_bitField0_ = 0;
1241 if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
1242 to_bitField0_ |= 0x00000001;
1244 if (nameBuilder_ == null) {
1245 result.name_ = name_;
1247 result.name_ = nameBuilder_.build();
1249 if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
1250 to_bitField0_ |= 0x00000002;
1252 result.value_ = value_;
1253 if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
1254 to_bitField0_ |= 0x00000004;
1256 result.type_ = type_;
1257 result.bitField0_ = to_bitField0_;
1262 public Builder mergeFrom(com.google.protobuf.Message other) {
1263 if (other instanceof org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute) {
1264 return mergeFrom((org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute)other);
1266 super.mergeFrom(other);
1271 public Builder mergeFrom(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute other) {
1272 if (other == org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute.getDefaultInstance()) return this;
1273 if (other.hasName()) {
1274 mergeName(other.getName());
1276 if (other.hasValue()) {
1277 bitField0_ |= 0x00000002;
1278 value_ = other.value_;
1281 if (other.hasType()) {
1282 setType(other.getType());
1284 this.mergeUnknownFields(other.getUnknownFields());
1288 public final boolean isInitialized() {
1292 public Builder mergeFrom(
1293 com.google.protobuf.CodedInputStream input,
1294 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1295 throws java.io.IOException {
1296 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute parsedMessage = null;
1298 parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
1299 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
1300 parsedMessage = (org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute) e.getUnfinishedMessage();
1303 if (parsedMessage != null) {
1304 mergeFrom(parsedMessage);
1309 private int bitField0_;
1311 // optional .org.opendaylight.controller.mdsal.QName name = 1;
1312 private org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName name_ = org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance();
1313 private com.google.protobuf.SingleFieldBuilder<
1314 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder> nameBuilder_;
1316 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1318 public boolean hasName() {
1319 return ((bitField0_ & 0x00000001) == 0x00000001);
1322 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1324 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName getName() {
1325 if (nameBuilder_ == null) {
1328 return nameBuilder_.getMessage();
1332 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1334 public Builder setName(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName value) {
1335 if (nameBuilder_ == null) {
1336 if (value == null) {
1337 throw new NullPointerException();
1342 nameBuilder_.setMessage(value);
1344 bitField0_ |= 0x00000001;
1348 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1350 public Builder setName(
1351 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder builderForValue) {
1352 if (nameBuilder_ == null) {
1353 name_ = builderForValue.build();
1356 nameBuilder_.setMessage(builderForValue.build());
1358 bitField0_ |= 0x00000001;
1362 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1364 public Builder mergeName(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName value) {
1365 if (nameBuilder_ == null) {
1366 if (((bitField0_ & 0x00000001) == 0x00000001) &&
1367 name_ != org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance()) {
1369 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.newBuilder(name_).mergeFrom(value).buildPartial();
1375 nameBuilder_.mergeFrom(value);
1377 bitField0_ |= 0x00000001;
1381 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1383 public Builder clearName() {
1384 if (nameBuilder_ == null) {
1385 name_ = org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance();
1388 nameBuilder_.clear();
1390 bitField0_ = (bitField0_ & ~0x00000001);
1394 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1396 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder getNameBuilder() {
1397 bitField0_ |= 0x00000001;
1399 return getNameFieldBuilder().getBuilder();
1402 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1404 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder getNameOrBuilder() {
1405 if (nameBuilder_ != null) {
1406 return nameBuilder_.getMessageOrBuilder();
1412 * <code>optional .org.opendaylight.controller.mdsal.QName name = 1;</code>
1414 private com.google.protobuf.SingleFieldBuilder<
1415 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder>
1416 getNameFieldBuilder() {
1417 if (nameBuilder_ == null) {
1418 nameBuilder_ = new com.google.protobuf.SingleFieldBuilder<
1419 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder>(
1421 getParentForChildren(),
1425 return nameBuilder_;
1428 // optional string value = 2;
1429 private java.lang.Object value_ = "";
1431 * <code>optional string value = 2;</code>
1433 public boolean hasValue() {
1434 return ((bitField0_ & 0x00000002) == 0x00000002);
1437 * <code>optional string value = 2;</code>
1439 public java.lang.String getValue() {
1440 java.lang.Object ref = value_;
1441 if (!(ref instanceof java.lang.String)) {
1442 java.lang.String s = ((com.google.protobuf.ByteString) ref)
1447 return (java.lang.String) ref;
1451 * <code>optional string value = 2;</code>
1453 public com.google.protobuf.ByteString
1455 java.lang.Object ref = value_;
1456 if (ref instanceof String) {
1457 com.google.protobuf.ByteString b =
1458 com.google.protobuf.ByteString.copyFromUtf8(
1459 (java.lang.String) ref);
1463 return (com.google.protobuf.ByteString) ref;
1467 * <code>optional string value = 2;</code>
1469 public Builder setValue(
1470 java.lang.String value) {
1471 if (value == null) {
1472 throw new NullPointerException();
1474 bitField0_ |= 0x00000002;
1480 * <code>optional string value = 2;</code>
1482 public Builder clearValue() {
1483 bitField0_ = (bitField0_ & ~0x00000002);
1484 value_ = getDefaultInstance().getValue();
1489 * <code>optional string value = 2;</code>
1491 public Builder setValueBytes(
1492 com.google.protobuf.ByteString value) {
1493 if (value == null) {
1494 throw new NullPointerException();
1496 bitField0_ |= 0x00000002;
1502 // optional int32 type = 3;
1505 * <code>optional int32 type = 3;</code>
1507 public boolean hasType() {
1508 return ((bitField0_ & 0x00000004) == 0x00000004);
1511 * <code>optional int32 type = 3;</code>
1513 public int getType() {
1517 * <code>optional int32 type = 3;</code>
1519 public Builder setType(int value) {
1520 bitField0_ |= 0x00000004;
1526 * <code>optional int32 type = 3;</code>
1528 public Builder clearType() {
1529 bitField0_ = (bitField0_ & ~0x00000004);
1535 // @@protoc_insertion_point(builder_scope:org.opendaylight.controller.mdsal.PathArgumentAttribute)
1539 defaultInstance = new PathArgumentAttribute(true);
1540 defaultInstance.initFields();
1543 // @@protoc_insertion_point(class_scope:org.opendaylight.controller.mdsal.PathArgumentAttribute)
1546 public interface QNameOrBuilder
1547 extends com.google.protobuf.MessageOrBuilder {
1549 // optional string value = 1;
1551 * <code>optional string value = 1;</code>
1559 * <code>optional string value = 1;</code>
1565 java.lang.String getValue();
1567 * <code>optional string value = 1;</code>
1573 com.google.protobuf.ByteString
1576 // optional int32 namespace = 2;
1578 * <code>optional int32 namespace = 2;</code>
1580 boolean hasNamespace();
1582 * <code>optional int32 namespace = 2;</code>
1586 // optional int32 revision = 3;
1588 * <code>optional int32 revision = 3;</code>
1590 boolean hasRevision();
1592 * <code>optional int32 revision = 3;</code>
1596 // optional int32 localName = 4;
1598 * <code>optional int32 localName = 4;</code>
1600 boolean hasLocalName();
1602 * <code>optional int32 localName = 4;</code>
1607 * Protobuf type {@code org.opendaylight.controller.mdsal.QName}
1609 public static final class QName extends
1610 com.google.protobuf.GeneratedMessage
1611 implements QNameOrBuilder {
1612 // Use QName.newBuilder() to construct.
1613 private QName(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
1615 this.unknownFields = builder.getUnknownFields();
1617 private QName(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
1619 private static final QName defaultInstance;
1620 public static QName getDefaultInstance() {
1621 return defaultInstance;
1624 public QName getDefaultInstanceForType() {
1625 return defaultInstance;
1628 private final com.google.protobuf.UnknownFieldSet unknownFields;
1630 public final com.google.protobuf.UnknownFieldSet
1631 getUnknownFields() {
1632 return this.unknownFields;
1635 com.google.protobuf.CodedInputStream input,
1636 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1637 throws com.google.protobuf.InvalidProtocolBufferException {
1639 int mutable_bitField0_ = 0;
1640 com.google.protobuf.UnknownFieldSet.Builder unknownFields =
1641 com.google.protobuf.UnknownFieldSet.newBuilder();
1643 boolean done = false;
1645 int tag = input.readTag();
1651 if (!parseUnknownField(input, unknownFields,
1652 extensionRegistry, tag)) {
1658 bitField0_ |= 0x00000001;
1659 value_ = input.readBytes();
1663 bitField0_ |= 0x00000002;
1664 namespace_ = input.readInt32();
1668 bitField0_ |= 0x00000004;
1669 revision_ = input.readInt32();
1673 bitField0_ |= 0x00000008;
1674 localName_ = input.readInt32();
1679 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
1680 throw e.setUnfinishedMessage(this);
1681 } catch (java.io.IOException e) {
1682 throw new com.google.protobuf.InvalidProtocolBufferException(
1683 e.getMessage()).setUnfinishedMessage(this);
1685 this.unknownFields = unknownFields.build();
1686 makeExtensionsImmutable();
1689 public static final com.google.protobuf.Descriptors.Descriptor
1691 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_QName_descriptor;
1694 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
1695 internalGetFieldAccessorTable() {
1696 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_QName_fieldAccessorTable
1697 .ensureFieldAccessorsInitialized(
1698 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.class, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder.class);
1701 public static com.google.protobuf.Parser<QName> PARSER =
1702 new com.google.protobuf.AbstractParser<QName>() {
1703 public QName parsePartialFrom(
1704 com.google.protobuf.CodedInputStream input,
1705 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1706 throws com.google.protobuf.InvalidProtocolBufferException {
1707 return new QName(input, extensionRegistry);
1712 public com.google.protobuf.Parser<QName> getParserForType() {
1716 private int bitField0_;
1717 // optional string value = 1;
1718 public static final int VALUE_FIELD_NUMBER = 1;
1719 private java.lang.Object value_;
1721 * <code>optional string value = 1;</code>
1727 public boolean hasValue() {
1728 return ((bitField0_ & 0x00000001) == 0x00000001);
1731 * <code>optional string value = 1;</code>
1737 public java.lang.String getValue() {
1738 java.lang.Object ref = value_;
1739 if (ref instanceof java.lang.String) {
1740 return (java.lang.String) ref;
1742 com.google.protobuf.ByteString bs =
1743 (com.google.protobuf.ByteString) ref;
1744 java.lang.String s = bs.toStringUtf8();
1745 if (bs.isValidUtf8()) {
1752 * <code>optional string value = 1;</code>
1758 public com.google.protobuf.ByteString
1760 java.lang.Object ref = value_;
1761 if (ref instanceof java.lang.String) {
1762 com.google.protobuf.ByteString b =
1763 com.google.protobuf.ByteString.copyFromUtf8(
1764 (java.lang.String) ref);
1768 return (com.google.protobuf.ByteString) ref;
1772 // optional int32 namespace = 2;
1773 public static final int NAMESPACE_FIELD_NUMBER = 2;
1774 private int namespace_;
1776 * <code>optional int32 namespace = 2;</code>
1778 public boolean hasNamespace() {
1779 return ((bitField0_ & 0x00000002) == 0x00000002);
1782 * <code>optional int32 namespace = 2;</code>
1784 public int getNamespace() {
1788 // optional int32 revision = 3;
1789 public static final int REVISION_FIELD_NUMBER = 3;
1790 private int revision_;
1792 * <code>optional int32 revision = 3;</code>
1794 public boolean hasRevision() {
1795 return ((bitField0_ & 0x00000004) == 0x00000004);
1798 * <code>optional int32 revision = 3;</code>
1800 public int getRevision() {
1804 // optional int32 localName = 4;
1805 public static final int LOCALNAME_FIELD_NUMBER = 4;
1806 private int localName_;
1808 * <code>optional int32 localName = 4;</code>
1810 public boolean hasLocalName() {
1811 return ((bitField0_ & 0x00000008) == 0x00000008);
1814 * <code>optional int32 localName = 4;</code>
1816 public int getLocalName() {
1820 private void initFields() {
1826 private byte memoizedIsInitialized = -1;
1827 public final boolean isInitialized() {
1828 byte isInitialized = memoizedIsInitialized;
1829 if (isInitialized != -1) return isInitialized == 1;
1831 memoizedIsInitialized = 1;
1835 public void writeTo(com.google.protobuf.CodedOutputStream output)
1836 throws java.io.IOException {
1837 getSerializedSize();
1838 if (((bitField0_ & 0x00000001) == 0x00000001)) {
1839 output.writeBytes(1, getValueBytes());
1841 if (((bitField0_ & 0x00000002) == 0x00000002)) {
1842 output.writeInt32(2, namespace_);
1844 if (((bitField0_ & 0x00000004) == 0x00000004)) {
1845 output.writeInt32(3, revision_);
1847 if (((bitField0_ & 0x00000008) == 0x00000008)) {
1848 output.writeInt32(4, localName_);
1850 getUnknownFields().writeTo(output);
1853 private int memoizedSerializedSize = -1;
1854 public int getSerializedSize() {
1855 int size = memoizedSerializedSize;
1856 if (size != -1) return size;
1859 if (((bitField0_ & 0x00000001) == 0x00000001)) {
1860 size += com.google.protobuf.CodedOutputStream
1861 .computeBytesSize(1, getValueBytes());
1863 if (((bitField0_ & 0x00000002) == 0x00000002)) {
1864 size += com.google.protobuf.CodedOutputStream
1865 .computeInt32Size(2, namespace_);
1867 if (((bitField0_ & 0x00000004) == 0x00000004)) {
1868 size += com.google.protobuf.CodedOutputStream
1869 .computeInt32Size(3, revision_);
1871 if (((bitField0_ & 0x00000008) == 0x00000008)) {
1872 size += com.google.protobuf.CodedOutputStream
1873 .computeInt32Size(4, localName_);
1875 size += getUnknownFields().getSerializedSize();
1876 memoizedSerializedSize = size;
1880 private static final long serialVersionUID = 0L;
1882 protected java.lang.Object writeReplace()
1883 throws java.io.ObjectStreamException {
1884 return super.writeReplace();
1887 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(
1888 com.google.protobuf.ByteString data)
1889 throws com.google.protobuf.InvalidProtocolBufferException {
1890 return PARSER.parseFrom(data);
1892 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(
1893 com.google.protobuf.ByteString data,
1894 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1895 throws com.google.protobuf.InvalidProtocolBufferException {
1896 return PARSER.parseFrom(data, extensionRegistry);
1898 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(byte[] data)
1899 throws com.google.protobuf.InvalidProtocolBufferException {
1900 return PARSER.parseFrom(data);
1902 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(
1904 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1905 throws com.google.protobuf.InvalidProtocolBufferException {
1906 return PARSER.parseFrom(data, extensionRegistry);
1908 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(java.io.InputStream input)
1909 throws java.io.IOException {
1910 return PARSER.parseFrom(input);
1912 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(
1913 java.io.InputStream input,
1914 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1915 throws java.io.IOException {
1916 return PARSER.parseFrom(input, extensionRegistry);
1918 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseDelimitedFrom(java.io.InputStream input)
1919 throws java.io.IOException {
1920 return PARSER.parseDelimitedFrom(input);
1922 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseDelimitedFrom(
1923 java.io.InputStream input,
1924 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1925 throws java.io.IOException {
1926 return PARSER.parseDelimitedFrom(input, extensionRegistry);
1928 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(
1929 com.google.protobuf.CodedInputStream input)
1930 throws java.io.IOException {
1931 return PARSER.parseFrom(input);
1933 public static org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parseFrom(
1934 com.google.protobuf.CodedInputStream input,
1935 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
1936 throws java.io.IOException {
1937 return PARSER.parseFrom(input, extensionRegistry);
1940 public static Builder newBuilder() { return Builder.create(); }
1941 public Builder newBuilderForType() { return newBuilder(); }
1942 public static Builder newBuilder(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName prototype) {
1943 return newBuilder().mergeFrom(prototype);
1945 public Builder toBuilder() { return newBuilder(this); }
1948 protected Builder newBuilderForType(
1949 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
1950 Builder builder = new Builder(parent);
1954 * Protobuf type {@code org.opendaylight.controller.mdsal.QName}
1956 public static final class Builder extends
1957 com.google.protobuf.GeneratedMessage.Builder<Builder>
1958 implements org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder {
1959 public static final com.google.protobuf.Descriptors.Descriptor
1961 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_QName_descriptor;
1964 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
1965 internalGetFieldAccessorTable() {
1966 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_QName_fieldAccessorTable
1967 .ensureFieldAccessorsInitialized(
1968 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.class, org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.Builder.class);
1971 // Construct using org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.newBuilder()
1973 maybeForceBuilderInitialization();
1977 com.google.protobuf.GeneratedMessage.BuilderParent parent) {
1979 maybeForceBuilderInitialization();
1981 private void maybeForceBuilderInitialization() {
1982 if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
1985 private static Builder create() {
1986 return new Builder();
1989 public Builder clear() {
1992 bitField0_ = (bitField0_ & ~0x00000001);
1994 bitField0_ = (bitField0_ & ~0x00000002);
1996 bitField0_ = (bitField0_ & ~0x00000004);
1998 bitField0_ = (bitField0_ & ~0x00000008);
2002 public Builder clone() {
2003 return create().mergeFrom(buildPartial());
2006 public com.google.protobuf.Descriptors.Descriptor
2007 getDescriptorForType() {
2008 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.internal_static_org_opendaylight_controller_mdsal_QName_descriptor;
2011 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName getDefaultInstanceForType() {
2012 return org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance();
2015 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName build() {
2016 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName result = buildPartial();
2017 if (!result.isInitialized()) {
2018 throw newUninitializedMessageException(result);
2023 public org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName buildPartial() {
2024 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName result = new org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName(this);
2025 int from_bitField0_ = bitField0_;
2026 int to_bitField0_ = 0;
2027 if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
2028 to_bitField0_ |= 0x00000001;
2030 result.value_ = value_;
2031 if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
2032 to_bitField0_ |= 0x00000002;
2034 result.namespace_ = namespace_;
2035 if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
2036 to_bitField0_ |= 0x00000004;
2038 result.revision_ = revision_;
2039 if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
2040 to_bitField0_ |= 0x00000008;
2042 result.localName_ = localName_;
2043 result.bitField0_ = to_bitField0_;
2048 public Builder mergeFrom(com.google.protobuf.Message other) {
2049 if (other instanceof org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName) {
2050 return mergeFrom((org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName)other);
2052 super.mergeFrom(other);
2057 public Builder mergeFrom(org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName other) {
2058 if (other == org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName.getDefaultInstance()) return this;
2059 if (other.hasValue()) {
2060 bitField0_ |= 0x00000001;
2061 value_ = other.value_;
2064 if (other.hasNamespace()) {
2065 setNamespace(other.getNamespace());
2067 if (other.hasRevision()) {
2068 setRevision(other.getRevision());
2070 if (other.hasLocalName()) {
2071 setLocalName(other.getLocalName());
2073 this.mergeUnknownFields(other.getUnknownFields());
2077 public final boolean isInitialized() {
2081 public Builder mergeFrom(
2082 com.google.protobuf.CodedInputStream input,
2083 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
2084 throws java.io.IOException {
2085 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName parsedMessage = null;
2087 parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
2088 } catch (com.google.protobuf.InvalidProtocolBufferException e) {
2089 parsedMessage = (org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName) e.getUnfinishedMessage();
2092 if (parsedMessage != null) {
2093 mergeFrom(parsedMessage);
2098 private int bitField0_;
2100 // optional string value = 1;
2101 private java.lang.Object value_ = "";
2103 * <code>optional string value = 1;</code>
2109 public boolean hasValue() {
2110 return ((bitField0_ & 0x00000001) == 0x00000001);
2113 * <code>optional string value = 1;</code>
2119 public java.lang.String getValue() {
2120 java.lang.Object ref = value_;
2121 if (!(ref instanceof java.lang.String)) {
2122 java.lang.String s = ((com.google.protobuf.ByteString) ref)
2127 return (java.lang.String) ref;
2131 * <code>optional string value = 1;</code>
2137 public com.google.protobuf.ByteString
2139 java.lang.Object ref = value_;
2140 if (ref instanceof String) {
2141 com.google.protobuf.ByteString b =
2142 com.google.protobuf.ByteString.copyFromUtf8(
2143 (java.lang.String) ref);
2147 return (com.google.protobuf.ByteString) ref;
2151 * <code>optional string value = 1;</code>
2157 public Builder setValue(
2158 java.lang.String value) {
2159 if (value == null) {
2160 throw new NullPointerException();
2162 bitField0_ |= 0x00000001;
2168 * <code>optional string value = 1;</code>
2174 public Builder clearValue() {
2175 bitField0_ = (bitField0_ & ~0x00000001);
2176 value_ = getDefaultInstance().getValue();
2181 * <code>optional string value = 1;</code>
2187 public Builder setValueBytes(
2188 com.google.protobuf.ByteString value) {
2189 if (value == null) {
2190 throw new NullPointerException();
2192 bitField0_ |= 0x00000001;
2198 // optional int32 namespace = 2;
2199 private int namespace_ ;
2201 * <code>optional int32 namespace = 2;</code>
2203 public boolean hasNamespace() {
2204 return ((bitField0_ & 0x00000002) == 0x00000002);
2207 * <code>optional int32 namespace = 2;</code>
2209 public int getNamespace() {
2213 * <code>optional int32 namespace = 2;</code>
2215 public Builder setNamespace(int value) {
2216 bitField0_ |= 0x00000002;
2222 * <code>optional int32 namespace = 2;</code>
2224 public Builder clearNamespace() {
2225 bitField0_ = (bitField0_ & ~0x00000002);
2231 // optional int32 revision = 3;
2232 private int revision_ ;
2234 * <code>optional int32 revision = 3;</code>
2236 public boolean hasRevision() {
2237 return ((bitField0_ & 0x00000004) == 0x00000004);
2240 * <code>optional int32 revision = 3;</code>
2242 public int getRevision() {
2246 * <code>optional int32 revision = 3;</code>
2248 public Builder setRevision(int value) {
2249 bitField0_ |= 0x00000004;
2255 * <code>optional int32 revision = 3;</code>
2257 public Builder clearRevision() {
2258 bitField0_ = (bitField0_ & ~0x00000004);
2264 // optional int32 localName = 4;
2265 private int localName_ ;
2267 * <code>optional int32 localName = 4;</code>
2269 public boolean hasLocalName() {
2270 return ((bitField0_ & 0x00000008) == 0x00000008);
2273 * <code>optional int32 localName = 4;</code>
2275 public int getLocalName() {
2279 * <code>optional int32 localName = 4;</code>
2281 public Builder setLocalName(int value) {
2282 bitField0_ |= 0x00000008;
2288 * <code>optional int32 localName = 4;</code>
2290 public Builder clearLocalName() {
2291 bitField0_ = (bitField0_ & ~0x00000008);
2297 // @@protoc_insertion_point(builder_scope:org.opendaylight.controller.mdsal.QName)
2301 defaultInstance = new QName(true);
2302 defaultInstance.initFields();
2305 // @@protoc_insertion_point(class_scope:org.opendaylight.controller.mdsal.QName)
2308 public interface PathArgumentOrBuilder
2309 extends com.google.protobuf.MessageOrBuilder {
2311 // optional string value = 1;
2313 * <code>optional string value = 1;</code>
2321 * <code>optional string value = 1;</code>
2327 java.lang.String getValue();
2329 * <code>optional string value = 1;</code>
2335 com.google.protobuf.ByteString
2338 // optional string type = 2;
2340 * <code>optional string type = 2;</code>
2348 * <code>optional string type = 2;</code>
2354 java.lang.String getType();
2356 * <code>optional string type = 2;</code>
2362 com.google.protobuf.ByteString
2365 // optional .org.opendaylight.controller.mdsal.QName nodeType = 3;
2367 * <code>optional .org.opendaylight.controller.mdsal.QName nodeType = 3;</code>
2369 boolean hasNodeType();
2371 * <code>optional .org.opendaylight.controller.mdsal.QName nodeType = 3;</code>
2373 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QName getNodeType();
2375 * <code>optional .org.opendaylight.controller.mdsal.QName nodeType = 3;</code>
2377 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.QNameOrBuilder getNodeTypeOrBuilder();
2379 // repeated .org.opendaylight.controller.mdsal.PathArgumentAttribute attribute = 4;
2381 * <code>repeated .org.opendaylight.controller.mdsal.PathArgumentAttribute attribute = 4;</code>
2383 java.util.List<org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute>
2386 * <code>repeated .org.opendaylight.controller.mdsal.PathArgumentAttribute attribute = 4;</code>
2388 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttribute getAttribute(int index);
2390 * <code>repeated .org.opendaylight.controller.mdsal.PathArgumentAttribute attribute = 4;</code>
2392 int getAttributeCount();
2394 * <code>repeated .org.opendaylight.controller.mdsal.PathArgumentAttribute attribute = 4;</code>
2396 java.util.List<? extends org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttributeOrBuilder>
2397 getAttributeOrBuilderList();
2399 * <code>repeated .org.opendaylight.controller.mdsal.PathArgumentAttribute attribute = 4;</code>
2401 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.PathArgumentAttributeOrBuilder getAttributeOrBuilder(
2404 // repeated .org.opendaylight.controller.mdsal.Attribute attributes = 5;
2406 * <code>repeated .org.opendaylight.controller.mdsal.Attribute attributes = 5;</code>
2409 * @deprecated For backward compatibility (see InstanceIdentifierUtils)
2412 java.util.List<org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute>
2413 getAttributesList();
2415 * <code>repeated .org.opendaylight.controller.mdsal.Attribute attributes = 5;</code>
2418 * @deprecated For backward compatibility (see InstanceIdentifierUtils)
2421 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.Attribute getAttributes(int index);
2423 * <code>repeated .org.opendaylight.controller.mdsal.Attribute attributes = 5;</code>
2426 * @deprecated For backward compatibility (see InstanceIdentifierUtils)
2429 int getAttributesCount();
2431 * <code>repeated .org.opendaylight.controller.mdsal.Attribute attributes = 5;</code>
2434 * @deprecated For backward compatibility (see InstanceIdentifierUtils)
2437 java.util.List<? extends org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.AttributeOrBuilder>
2438 getAttributesOrBuilderList();
2440 * <code>repeated .org.opendaylight.controller.mdsal.Attribute attributes = 5;</code>
2443 * @deprecated For backward compatibility (see InstanceIdentifierUtils)
2446 org.opendaylight.controller.protobuff.messages.common.NormalizedNodeMessages.AttributeOrBuilder getAttributesOrBuilder(
2449 // optional int32 intType = 6;
2451 * <code>optional int32 intType = 6;</code>
2453 boolean hasIntType();
2455 * <code>optional int32 intType = 6;</code>
2460 * Protobuf type {@code org.opendaylight.controller.mdsal.PathArgument}
2462 public static final class PathArgument extends
2463 com.google.protobuf.GeneratedMessage
2464 implements PathArgumentOrBuilder {
2465 // Use PathArgument.newBuilder() to construct.
2466 private PathArgument(com.google.protobuf.GeneratedMessage.Builder<?> builder) {
2468 this.unknownFields = builder.getUnknownFields();
2470 private PathArgument(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
2472 private static final PathArgument defaultInstance;
2473 public static PathArgument getDefaultInstance() {
2474 return defaultInstance;
2477 public PathArgument getDefaultInstanceForType() {
2478 return defaultInstance;
2481 private final com.google.protobuf.UnknownFieldSet unknownFields;
2483 public final com.google.protobuf.UnknownFieldSet
2484 getUnknownFields() {
2485 return this.unknownFields;
2487 private PathArgument(
2488 com.google.protobuf.CodedInputStream input,
2489 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
2490 throws com.google.protobuf.InvalidProtocolBufferException {
2492 int mutable_bitField0_ = 0;
2493 com.google.protobuf.UnknownFieldSet.Builder unknownFields =
2494 com.google.protobuf.UnknownFieldSet.newBuilder();
2496 boolean done = false;