Class GeneratedMessage.ExtendableBuilder<MessageT extends GeneratedMessage.ExtendableMessage<MessageT>,BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,BuilderT>>
- All Implemented Interfaces:
GeneratedMessage.ExtendableMessageOrBuilder<MessageT>
,Message.Builder
,com.google.protobuf.MessageLite.Builder
,com.google.protobuf.MessageLiteOrBuilder
,MessageOrBuilder
,Cloneable
- Direct Known Subclasses:
DescriptorProtos.EnumOptions.Builder
,DescriptorProtos.EnumValueOptions.Builder
,DescriptorProtos.ExtensionRangeOptions.Builder
,DescriptorProtos.FeatureSet.Builder
,DescriptorProtos.FieldOptions.Builder
,DescriptorProtos.FileDescriptorSet.Builder
,DescriptorProtos.FileOptions.Builder
,DescriptorProtos.MessageOptions.Builder
,DescriptorProtos.MethodOptions.Builder
,DescriptorProtos.OneofOptions.Builder
,DescriptorProtos.ServiceOptions.Builder
,DescriptorProtos.SourceCodeInfo.Builder
,GeneratedMessageV3.Builder
- Enclosing class:
GeneratedMessage
This class implements type-safe accessors for extensions. They implement all the same
operations that you can do with normal fields -- e.g. "get", "set", and "add" -- but for
extensions. The extensions are identified using instances of the class GeneratedMessage.GeneratedExtension
; the protocol compiler generates a static instance of this class for every
extension in its input. Through the magic of generics, all is made type-safe.
For example, imagine you have the .proto
file:
option java_class = "MyProto"; message Foo { extensions 1000 to max; } extend Foo { optional int32 bar; }
Then you might write code like:
MyProto.Foo foo = MyProto.Foo.newBuilder() .setExtension(MyProto.bar, 123) .build();
See also GeneratedMessage.ExtendableMessage
.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
protected
-
Method Summary
Modifier and TypeMethodDescriptionfinal <T> BuilderT
addExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite, T value) Append a value to a repeated extension.addRepeatedField
(Descriptors.FieldDescriptor field, Object value) LikesetRepeatedField
, but appends the value as a new element.clear()
Called by the initialization and clear code paths to allow subclasses to reset any of their builtin fields back to the initial values.final <T> BuilderT
clearExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite) Clear an extension.Clears the field.protected boolean
Called by subclasses to check if all extensions are initialized.Returns a collection of all the fields in this message which are set and their corresponding values.final <T> T
getExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite, int index) Get one element of a repeated extension.final <T> T
getExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite) Get the value of an extension.final <T> int
getExtensionCount
(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite) Get the number of elements in a repeated extension.Obtains the value of the given field, or the default value if it is not set.Get a nested builder instance for the given field.getRepeatedField
(Descriptors.FieldDescriptor field, int index) Gets an element of a repeated field.getRepeatedFieldBuilder
(Descriptors.FieldDescriptor field, int index) Get a nested builder instance for the given repeated field instance.int
Gets the number of elements of a repeated field.final <T> boolean
hasExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite) Check if a singular extension is present.boolean
Returns true if the given field is set.boolean
protected void
Create a builder for messages of the appropriate type for the given field.protected boolean
parseUnknownField
(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry, int tag) Called by generated subclasses to parse an unknown field.final <T> BuilderT
setExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite, int index, T value) Set the value of one element of a repeated extension.final <T> BuilderT
setExtension
(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite, T value) Set the value of an extension.setField
(Descriptors.FieldDescriptor field, Object value) Sets a field to the given value.setRepeatedField
(Descriptors.FieldDescriptor field, int index, Object value) Sets an element of a repeated field to the given value.Methods inherited from class com.google.protobuf.GeneratedMessage.Builder
clearOneof, clone, getDescriptorForType, getOneofFieldDescriptor, getParentForChildren, getUnknownFields, getUnknownFieldSetBuilder, hasOneof, internalGetFieldAccessorTable, internalGetMapField, internalGetMapFieldReflection, internalGetMutableMapField, internalGetMutableMapFieldReflection, isClean, markClean, mergeUnknownFields, mergeUnknownLengthDelimitedField, mergeUnknownVarintField, onBuilt, onChanged, setUnknownFields, setUnknownFieldSetBuilder, setUnknownFieldsProto3
Methods inherited from class com.google.protobuf.AbstractMessage.Builder
findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
addAll, addAll, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, newUninitializedMessageException
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.google.protobuf.GeneratedMessage.ExtendableMessageOrBuilder
getDefaultInstanceForType
Methods inherited from interface com.google.protobuf.Message.Builder
build, buildPartial, mergeDelimitedFrom, mergeDelimitedFrom
Methods inherited from interface com.google.protobuf.MessageLite.Builder
mergeFrom
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getInitializationErrorString, getOneofFieldDescriptor, getUnknownFields, hasOneof
-
Constructor Details
-
ExtendableBuilder
protected ExtendableBuilder() -
ExtendableBuilder
-
-
Method Details
-
clear
Description copied from class:GeneratedMessage.Builder
Called by the initialization and clear code paths to allow subclasses to reset any of their builtin fields back to the initial values.- Specified by:
clear
in interfaceMessage.Builder
- Specified by:
clear
in interfacecom.google.protobuf.MessageLite.Builder
- Overrides:
clear
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
hasExtension
public final <T> boolean hasExtension(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite) Check if a singular extension is present.- Specified by:
hasExtension
in interfaceGeneratedMessage.ExtendableMessageOrBuilder<MessageT extends GeneratedMessage.ExtendableMessage<MessageT>>
-
getExtensionCount
public final <T> int getExtensionCount(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite) Get the number of elements in a repeated extension.- Specified by:
getExtensionCount
in interfaceGeneratedMessage.ExtendableMessageOrBuilder<MessageT extends GeneratedMessage.ExtendableMessage<MessageT>>
-
getExtension
public final <T> T getExtension(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite) Get the value of an extension.- Specified by:
getExtension
in interfaceGeneratedMessage.ExtendableMessageOrBuilder<MessageT extends GeneratedMessage.ExtendableMessage<MessageT>>
-
getExtension
public final <T> T getExtension(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite, int index) Get one element of a repeated extension.- Specified by:
getExtension
in interfaceGeneratedMessage.ExtendableMessageOrBuilder<MessageT extends GeneratedMessage.ExtendableMessage<MessageT>>
-
setExtension
public final <T> BuilderT setExtension(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite, T value) Set the value of an extension. -
setExtension
public final <T> BuilderT setExtension(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite, int index, T value) Set the value of one element of a repeated extension. -
addExtension
public final <T> BuilderT addExtension(com.google.protobuf.ExtensionLite<? extends MessageT, List<T>> extensionLite, T value) Append a value to a repeated extension. -
clearExtension
public final <T> BuilderT clearExtension(com.google.protobuf.ExtensionLite<? extends MessageT, T> extensionLite) Clear an extension. -
extensionsAreInitialized
protected boolean extensionsAreInitialized()Called by subclasses to check if all extensions are initialized. -
isInitialized
public boolean isInitialized()- Specified by:
isInitialized
in interfacecom.google.protobuf.MessageLiteOrBuilder
- Overrides:
isInitialized
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
getAllFields
Description copied from interface:MessageOrBuilder
Returns a collection of all the fields in this message which are set and their corresponding values. A singular ("required" or "optional") field is set iff hasField() returns true for that field. A "repeated" field is set iff getRepeatedFieldCount() is greater than zero. The values are exactly what would be returned by callingMessageOrBuilder.getField(Descriptors.FieldDescriptor)
for each field. The map is guaranteed to be a sorted map, so iterating over it will return fields in order by field number.
If this is for a builder, the returned map may or may not reflect future changes to the builder. Either way, the returned map is itself unmodifiable.- Specified by:
getAllFields
in interfaceMessageOrBuilder
- Overrides:
getAllFields
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
getField
Description copied from interface:MessageOrBuilder
Obtains the value of the given field, or the default value if it is not set. For primitive fields, the boxed primitive value is returned. For enum fields, the EnumValueDescriptor for the value is returned. For embedded message fields, the sub-message is returned. For repeated fields, a java.util.List is returned.- Specified by:
getField
in interfaceMessageOrBuilder
- Overrides:
getField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
getFieldBuilder
Description copied from interface:Message.Builder
Get a nested builder instance for the given field.Normally, we hold a reference to the immutable message object for the message type field. Some implementations (the generated message builders) can also hold a reference to the builder object (a nested builder) for the field.
If the field is already backed up by a nested builder, the nested builder is returned. Otherwise, a new field builder is created and returned. The original message field (if one exists) is merged into the field builder, which is then nested into its parent builder.
- Specified by:
getFieldBuilder
in interfaceMessage.Builder
- Overrides:
getFieldBuilder
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
getRepeatedFieldCount
Description copied from interface:MessageOrBuilder
Gets the number of elements of a repeated field. This is exactly equivalent to calling the generated "Count" accessor method corresponding to the field.- Specified by:
getRepeatedFieldCount
in interfaceMessageOrBuilder
- Overrides:
getRepeatedFieldCount
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
getRepeatedField
Description copied from interface:MessageOrBuilder
Gets an element of a repeated field. For primitive fields, the boxed primitive value is returned. For enum fields, the EnumValueDescriptor for the value is returned. For embedded message fields, the sub-message is returned.- Specified by:
getRepeatedField
in interfaceMessageOrBuilder
- Overrides:
getRepeatedField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
getRepeatedFieldBuilder
Description copied from interface:Message.Builder
Get a nested builder instance for the given repeated field instance.Normally, we hold a reference to the immutable message object for the message type field. Some implementations (the generated message builders) can also hold a reference to the builder object (a nested builder) for the field.
If the field is already backed up by a nested builder, the nested builder is returned. Otherwise, a new field builder is created and returned. The original message field (if one exists) is merged into the field builder, which is then nested into its parent builder.
- Specified by:
getRepeatedFieldBuilder
in interfaceMessage.Builder
- Overrides:
getRepeatedFieldBuilder
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
hasField
Description copied from interface:MessageOrBuilder
Returns true if the given field is set. This is exactly equivalent to calling the generated "has" accessor method corresponding to the field. The return value of hasField() is semantically meaningful only for fields where field.hasPresence() == true.- Specified by:
hasField
in interfaceMessageOrBuilder
- Overrides:
hasField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
setField
Description copied from interface:Message.Builder
Sets a field to the given value. The value must be of the correct type for this field, that is, the same type thatMessageOrBuilder.getField(Descriptors.FieldDescriptor)
returns.- Specified by:
setField
in interfaceMessage.Builder
- Overrides:
setField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
clearField
Description copied from interface:Message.Builder
Clears the field. This is exactly equivalent to calling the generated "clear" accessor method corresponding to the field.- Specified by:
clearField
in interfaceMessage.Builder
- Overrides:
clearField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
setRepeatedField
Description copied from interface:Message.Builder
Sets an element of a repeated field to the given value. The value must be of the correct type for this field; that is, the same type thatMessageOrBuilder.getRepeatedField(Descriptors.FieldDescriptor,int)
returns.- Specified by:
setRepeatedField
in interfaceMessage.Builder
- Overrides:
setRepeatedField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
addRepeatedField
Description copied from interface:Message.Builder
LikesetRepeatedField
, but appends the value as a new element.- Specified by:
addRepeatedField
in interfaceMessage.Builder
- Overrides:
addRepeatedField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
newBuilderForField
Description copied from interface:Message.Builder
Create a builder for messages of the appropriate type for the given field. The builder is NOT nested in the current builder. However, messages built with the builder can then be passed to theMessage.Builder.setField(Descriptors.FieldDescriptor, Object)
,Message.Builder.setRepeatedField(Descriptors.FieldDescriptor, int, Object)
, orMessage.Builder.addRepeatedField(Descriptors.FieldDescriptor, Object)
method of the current builder.To obtain a builder nested in the current builder, use
Message.Builder.getFieldBuilder(Descriptors.FieldDescriptor)
instead.- Specified by:
newBuilderForField
in interfaceMessage.Builder
- Overrides:
newBuilderForField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>>
-
mergeExtensionFields
-
parseUnknownField
protected boolean parseUnknownField(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry, int tag) throws IOException Description copied from class:GeneratedMessage.Builder
Called by generated subclasses to parse an unknown field.- Overrides:
parseUnknownField
in classGeneratedMessage.Builder<BuilderT extends GeneratedMessage.ExtendableBuilder<MessageT,
BuilderT>> - Returns:
true
unless the tag is an end-group tag.- Throws:
IOException
-