Interface MessageLite.Builder
- All Superinterfaces:
Cloneable
,MessageLiteOrBuilder
- All Known Subinterfaces:
Message.Builder
- All Known Implementing Classes:
AbstractMessage.Builder
,AbstractMessageLite.Builder
,Any.Builder
,Api.Builder
,BoolValue.Builder
,BytesValue.Builder
,CompactThing.Builder
,CompactThings.Builder
,DescriptorProtos.DescriptorProto.Builder
,DescriptorProtos.DescriptorProto.ExtensionRange.Builder
,DescriptorProtos.DescriptorProto.ReservedRange.Builder
,DescriptorProtos.EnumDescriptorProto.Builder
,DescriptorProtos.EnumDescriptorProto.EnumReservedRange.Builder
,DescriptorProtos.EnumOptions.Builder
,DescriptorProtos.EnumValueDescriptorProto.Builder
,DescriptorProtos.EnumValueOptions.Builder
,DescriptorProtos.ExtensionRangeOptions.Builder
,DescriptorProtos.ExtensionRangeOptions.Declaration.Builder
,DescriptorProtos.FeatureSet.Builder
,DescriptorProtos.FeatureSet.VisibilityFeature.Builder
,DescriptorProtos.FeatureSetDefaults.Builder
,DescriptorProtos.FeatureSetDefaults.FeatureSetEditionDefault.Builder
,DescriptorProtos.FieldDescriptorProto.Builder
,DescriptorProtos.FieldOptions.Builder
,DescriptorProtos.FieldOptions.EditionDefault.Builder
,DescriptorProtos.FieldOptions.FeatureSupport.Builder
,DescriptorProtos.FileDescriptorProto.Builder
,DescriptorProtos.FileDescriptorSet.Builder
,DescriptorProtos.FileOptions.Builder
,DescriptorProtos.GeneratedCodeInfo.Annotation.Builder
,DescriptorProtos.GeneratedCodeInfo.Builder
,DescriptorProtos.MessageOptions.Builder
,DescriptorProtos.MethodDescriptorProto.Builder
,DescriptorProtos.MethodOptions.Builder
,DescriptorProtos.OneofDescriptorProto.Builder
,DescriptorProtos.OneofOptions.Builder
,DescriptorProtos.ServiceDescriptorProto.Builder
,DescriptorProtos.ServiceOptions.Builder
,DescriptorProtos.SourceCodeInfo.Builder
,DescriptorProtos.SourceCodeInfo.Location.Builder
,DescriptorProtos.UninterpretedOption.Builder
,DescriptorProtos.UninterpretedOption.NamePart.Builder
,DoubleValue.Builder
,Duration.Builder
,DynamicMessage.Builder
,Empty.Builder
,Enum.Builder
,EnumValue.Builder
,Field.Builder
,FieldMask.Builder
,FloatValue.Builder
,GeneratedMessage.Builder
,GeneratedMessage.ExtendableBuilder
,GeneratedMessageLite.Builder
,GeneratedMessageLite.ExtendableBuilder
,GeneratedMessageV3.Builder
,GeneratedMessageV3.ExtendableBuilder
,GetFileDescriptorSetRequest.Builder
,GetFileDescriptorSetResponse.Builder
,GetThingRequest.Builder
,GetThingResponse.Builder
,GetThingsRequest.Builder
,GetThingsResponse.Builder
,Int32Value.Builder
,Int64Value.Builder
,JavaFeaturesProto.JavaFeatures.Builder
,JavaFeaturesProto.JavaFeatures.NestInFileClassFeature.Builder
,LinksMetadata.Builder
,ListValue.Builder
,Log.Builder
,Log.Entry.Builder
,Log.Inline.Builder
,MapEntry.Builder
,Method.Builder
,Mixin.Builder
,Option.Builder
,PluginProtos.CodeGeneratorRequest.Builder
,PluginProtos.CodeGeneratorResponse.Builder
,PluginProtos.CodeGeneratorResponse.File.Builder
,PluginProtos.Version.Builder
,SourceContext.Builder
,StringValue.Builder
,Struct.Builder
,TextThing.Builder
,TextThings.Builder
,Thing.Builder
,ThingMetadata.Builder
,Things.Builder
,Timestamp.Builder
,Type.Builder
,UInt32Value.Builder
,UInt64Value.Builder
,UnknownFieldSet.Builder
,Validation.Builder
,Validations.Builder
,Value.Builder
,Value.Builder
,Value.LangString.Builder
,Value.List.Builder
,Value.Literal.Builder
- Enclosing interface:
MessageLite
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Constructs the message based on the state of the Builder.Likebuild()
, but does not throw an exception if the message is missing required fields.clear()
Resets all fields to their default values.clone()
Clones the Builder.boolean
mergeDelimitedFrom
(InputStream input) LikemergeFrom(InputStream)
, but does not read until EOF.boolean
mergeDelimitedFrom
(InputStream input, ExtensionRegistryLite extensionRegistry) LikemergeDelimitedFrom(InputStream)
but supporting extensions.mergeFrom
(byte[] data) Parsedata
as a message of this type and merge it with the message being built.mergeFrom
(byte[] data, int off, int len) Parsedata
as a message of this type and merge it with the message being built.mergeFrom
(byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry) Parsedata
as a message of this type and merge it with the message being built.mergeFrom
(byte[] data, ExtensionRegistryLite extensionRegistry) Parsedata
as a message of this type and merge it with the message being built.mergeFrom
(ByteString data) Parsedata
as a message of this type and merge it with the message being built.mergeFrom
(ByteString data, ExtensionRegistryLite extensionRegistry) Parsedata
as a message of this type and merge it with the message being built.mergeFrom
(CodedInputStream input) Parses a message of this type from the input and merges it with this message.mergeFrom
(CodedInputStream input, ExtensionRegistryLite extensionRegistry) LikemergeFrom(CodedInputStream)
, but also parses extensions.mergeFrom
(MessageLite other) Mergeother
into the message being built.mergeFrom
(InputStream input) Parse a message of this type frominput
and merge it with the message being built.mergeFrom
(InputStream input, ExtensionRegistryLite extensionRegistry) Parse a message of this type frominput
and merge it with the message being built.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
clear
Resets all fields to their default values. -
build
MessageLite build()Constructs the message based on the state of the Builder. Subsequent changes to the Builder will not affect the returned message.- Throws:
UninitializedMessageException
- The message is missing one or more required fields (i.e.MessageLiteOrBuilder.isInitialized()
returns false). UsebuildPartial()
to bypass this check.
-
buildPartial
MessageLite buildPartial()Likebuild()
, but does not throw an exception if the message is missing required fields. Instead, a partial message is returned. Subsequent changes to the Builder will not affect the returned message. -
clone
MessageLite.Builder clone()Clones the Builder.- See Also:
-
mergeFrom
Parses a message of this type from the input and merges it with this message.Warning: This does not verify that all required fields are present in the input message. If you call
build()
without setting all required fields, it will throw anUninitializedMessageException
, which is aRuntimeException
and thus might not be caught. There are a few good ways to deal with this:- Call
MessageLiteOrBuilder.isInitialized()
to verify that all required fields are set before building. - Use
buildPartial()
to build, which ignores missing required fields.
Note: The caller should call
CodedInputStream.checkLastTagWas(int)
after calling this to verify that the last tag seen was the appropriate end-group tag, or zero for EOF.- Throws:
InvalidProtocolBufferException
- the bytes read are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.IOException
- an I/O error reading from the stream
- Call
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry) throws IOException LikemergeFrom(CodedInputStream)
, but also parses extensions. The extensions that you want to be able to parse must be registered inextensionRegistry
. Extensions not in the registry will be treated as unknown fields.- Throws:
InvalidProtocolBufferException
- the bytes read are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.IOException
- an I/O error reading from the stream
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(ByteString data) throws InvalidProtocolBufferException Parsedata
as a message of this type and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream)
.- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes in data are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(ByteString data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException Parsedata
as a message of this type and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream,ExtensionRegistryLite)
.- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes in data are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(byte[] data) throws InvalidProtocolBufferException Parsedata
as a message of this type and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream)
.- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes in data are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(byte[] data, int off, int len) throws InvalidProtocolBufferException Parsedata
as a message of this type and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream)
.- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes in data are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(byte[] data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException Parsedata
as a message of this type and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream,ExtensionRegistryLite)
.- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes in data are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException Parsedata
as a message of this type and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream,ExtensionRegistryLite)
.- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes in data are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.
-
mergeFrom
Parse a message of this type frominput
and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream)
. Note that this method always reads the entire input (unless it throws an exception). If you want it to stop earlier, you will need to wrap your input in some wrapper stream that limits reading. Or, useMessageLite.writeDelimitedTo(OutputStream)
to write your message andmergeDelimitedFrom(InputStream)
to read it.Despite usually reading the entire input, this does not close the stream.
- Returns:
- this
- Throws:
InvalidProtocolBufferException
- the bytes read are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.IOException
- an I/O error reading from the stream
-
mergeFrom
@CanIgnoreReturnValue MessageLite.Builder mergeFrom(InputStream input, ExtensionRegistryLite extensionRegistry) throws IOException Parse a message of this type frominput
and merge it with the message being built. This is just a small wrapper aroundmergeFrom(CodedInputStream,ExtensionRegistryLite)
.- Returns:
- this
- Throws:
IOException
-
mergeFrom
Mergeother
into the message being built.other
must have the exact same type asthis
(i.e.getClass().equals(getDefaultInstanceForType().getClass())
).Merging occurs as follows. For each field:
* For singular primitive fields, if the field is set inother
, thenother
's value overwrites the value in this message.
* For singular message fields, if the field is set inother
, it is merged into the corresponding sub-message of this message using the same merging rules.
* For repeated fields, the elements inother
are concatenated with the elements in this message. * For oneof groups, if the other message has one of the fields set, the group of this message is cleared and replaced by the field of the other message, so that the oneof constraint is preserved.This is equivalent to the
Message::MergeFrom
method in C++. -
mergeDelimitedFrom
LikemergeFrom(InputStream)
, but does not read until EOF. Instead, the size of the message (encoded as a varint) is read first, then the message data. UseMessageLite.writeDelimitedTo(OutputStream)
to write messages in this format.- Returns:
- true if successful, or false if the stream is at EOF when the method starts. Any other error (including reaching EOF during parsing) causes an exception to be thrown.
- Throws:
InvalidProtocolBufferException
- the bytes read are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.IOException
- an I/O error reading from the stream
-
mergeDelimitedFrom
boolean mergeDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry) throws IOException LikemergeDelimitedFrom(InputStream)
but supporting extensions.- Returns:
- true if successful, or false if the stream is at EOF when the method starts. Any other error (including reaching EOF during parsing) causes an exception to be thrown.
- Throws:
InvalidProtocolBufferException
- the bytes read are not syntactically correct according to the protobuf wire format specification. The data is corrupt, incomplete, or was never a protobuf in the first place.IOException
- an I/O error reading from the stream
-