Package com.google.protobuf
Class DynamicMessage
- java.lang.Object
-
- com.google.protobuf.AbstractMessageLite
-
- com.google.protobuf.AbstractMessage
-
- com.google.protobuf.DynamicMessage
-
- All Implemented Interfaces:
Message
,MessageLite
,MessageLiteOrBuilder
,MessageOrBuilder
public final class DynamicMessage extends AbstractMessage
An implementation ofMessage
that can represent arbitrary types, given aDescriptors.Descriptor
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DynamicMessage.Builder
Builder forDynamicMessage
s.-
Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessage
AbstractMessage.BuilderParent
-
Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite
AbstractMessageLite.InternalOneOfEnum
-
-
Field Summary
-
Fields inherited from class com.google.protobuf.AbstractMessageLite
memoizedHashCode
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<Descriptors.FieldDescriptor,java.lang.Object>
getAllFields()
Returns a collection of all the fields in this message which are set and their corresponding values.static DynamicMessage
getDefaultInstance(Descriptors.Descriptor type)
Get aDynamicMessage
representing the default instance of the given type.DynamicMessage
getDefaultInstanceForType()
Get an instance of the type with no fields set.Descriptors.Descriptor
getDescriptorForType()
Get the message's type's descriptor.java.lang.Object
getField(Descriptors.FieldDescriptor field)
Obtains the value of the given field, or the default value if it is not set.Descriptors.FieldDescriptor
getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof)
Obtains the FieldDescriptor if the given oneof is set.Parser<DynamicMessage>
getParserForType()
Gets the parser for a message of the same type as this message.java.lang.Object
getRepeatedField(Descriptors.FieldDescriptor field, int index)
Gets an element of a repeated field.int
getRepeatedFieldCount(Descriptors.FieldDescriptor field)
Gets the number of elements of a repeated field.int
getSerializedSize()
Get the number of bytes required to encode this message.UnknownFieldSet
getUnknownFields()
Get theUnknownFieldSet
for this message.boolean
hasField(Descriptors.FieldDescriptor field)
Returns true if the given field is set.boolean
hasOneof(Descriptors.OneofDescriptor oneof)
Returns true if the given oneof is set.boolean
isInitialized()
Returns true if all required fields in the message and all embedded messages are set, false otherwise.static DynamicMessage.Builder
newBuilder(Descriptors.Descriptor type)
Construct aMessage.Builder
for the given type.static DynamicMessage.Builder
newBuilder(Message prototype)
Construct aMessage.Builder
for a message of the same type asprototype
, and initialize it withprototype
's contents.DynamicMessage.Builder
newBuilderForType()
Constructs a new builder for a message of the same type as this message.static DynamicMessage
parseFrom(Descriptors.Descriptor type, byte[] data)
Parsedata
as a message of the given type and return it.static DynamicMessage
parseFrom(Descriptors.Descriptor type, byte[] data, ExtensionRegistry extensionRegistry)
Parsedata
as a message of the given type and return it.static DynamicMessage
parseFrom(Descriptors.Descriptor type, ByteString data)
Parsedata
as a message of the given type and return it.static DynamicMessage
parseFrom(Descriptors.Descriptor type, ByteString data, ExtensionRegistry extensionRegistry)
Parsedata
as a message of the given type and return it.static DynamicMessage
parseFrom(Descriptors.Descriptor type, CodedInputStream input)
Parse a message of the given type from the given input stream.static DynamicMessage
parseFrom(Descriptors.Descriptor type, CodedInputStream input, ExtensionRegistry extensionRegistry)
Parse a message of the given type from the given input stream.static DynamicMessage
parseFrom(Descriptors.Descriptor type, java.io.InputStream input)
Parse a message of the given type frominput
and return it.static DynamicMessage
parseFrom(Descriptors.Descriptor type, java.io.InputStream input, ExtensionRegistry extensionRegistry)
Parse a message of the given type frominput
and return it.DynamicMessage.Builder
toBuilder()
Constructs a builder initialized with the current message.void
writeTo(CodedOutputStream output)
Serializes the message and writes it tooutput
.-
Methods inherited from class com.google.protobuf.AbstractMessage
equals, findInitializationErrors, getInitializationErrorString, hashBoolean, hashCode, hashEnum, hashEnumList, hashFields, hashLong, newBuilderForType, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite
addAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.google.protobuf.MessageLite
toByteArray, toByteString, writeDelimitedTo, writeTo
-
-
-
-
Method Detail
-
getDefaultInstance
public static DynamicMessage getDefaultInstance(Descriptors.Descriptor type)
Get aDynamicMessage
representing the default instance of the given type.
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, CodedInputStream input) throws java.io.IOException
Parse a message of the given type from the given input stream.- Throws:
java.io.IOException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, CodedInputStream input, ExtensionRegistry extensionRegistry) throws java.io.IOException
Parse a message of the given type from the given input stream.- Throws:
java.io.IOException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, ByteString data) throws InvalidProtocolBufferException
Parsedata
as a message of the given type and return it.- Throws:
InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, ByteString data, ExtensionRegistry extensionRegistry) throws InvalidProtocolBufferException
Parsedata
as a message of the given type and return it.- Throws:
InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, byte[] data) throws InvalidProtocolBufferException
Parsedata
as a message of the given type and return it.- Throws:
InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, byte[] data, ExtensionRegistry extensionRegistry) throws InvalidProtocolBufferException
Parsedata
as a message of the given type and return it.- Throws:
InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, java.io.InputStream input) throws java.io.IOException
Parse a message of the given type frominput
and return it.- Throws:
java.io.IOException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, java.io.InputStream input, ExtensionRegistry extensionRegistry) throws java.io.IOException
Parse a message of the given type frominput
and return it.- Throws:
java.io.IOException
-
newBuilder
public static DynamicMessage.Builder newBuilder(Descriptors.Descriptor type)
Construct aMessage.Builder
for the given type.
-
newBuilder
public static DynamicMessage.Builder newBuilder(Message prototype)
Construct aMessage.Builder
for a message of the same type asprototype
, and initialize it withprototype
's contents.
-
getDescriptorForType
public Descriptors.Descriptor getDescriptorForType()
Description copied from interface:MessageOrBuilder
Get the message's type's descriptor. This differs from thegetDescriptor()
method of generated message classes in that this method is an abstract method of theMessage
interface whereasgetDescriptor()
is a static method of a specific class. They return the same thing.
-
getDefaultInstanceForType
public DynamicMessage getDefaultInstanceForType()
Description copied from interface:MessageLiteOrBuilder
Get an instance of the type with no fields set. Because no fields are set, all getters for singular fields will return default values and repeated fields will appear empty. This may or may not be a singleton. This differs from thegetDefaultInstance()
method of generated message classes in that this method is an abstract method of theMessageLite
interface whereasgetDefaultInstance()
is a static method of a specific class. They return the same thing.
-
getAllFields
public java.util.Map<Descriptors.FieldDescriptor,java.lang.Object> 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.
-
hasOneof
public boolean hasOneof(Descriptors.OneofDescriptor oneof)
Description copied from interface:MessageOrBuilder
Returns true if the given oneof is set.- Specified by:
hasOneof
in interfaceMessageOrBuilder
- Overrides:
hasOneof
in classAbstractMessage
-
getOneofFieldDescriptor
public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof)
Description copied from interface:MessageOrBuilder
Obtains the FieldDescriptor if the given oneof is set. Returns null if no field is set.- Specified by:
getOneofFieldDescriptor
in interfaceMessageOrBuilder
- Overrides:
getOneofFieldDescriptor
in classAbstractMessage
-
hasField
public boolean hasField(Descriptors.FieldDescriptor field)
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.
-
getField
public java.lang.Object getField(Descriptors.FieldDescriptor field)
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.
-
getRepeatedFieldCount
public int getRepeatedFieldCount(Descriptors.FieldDescriptor field)
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.
-
getRepeatedField
public java.lang.Object getRepeatedField(Descriptors.FieldDescriptor field, int index)
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.
-
getUnknownFields
public UnknownFieldSet getUnknownFields()
Description copied from interface:MessageOrBuilder
Get theUnknownFieldSet
for this message.
-
isInitialized
public boolean isInitialized()
Description copied from interface:MessageLiteOrBuilder
Returns true if all required fields in the message and all embedded messages are set, false otherwise.- Specified by:
isInitialized
in interfaceMessageLiteOrBuilder
- Overrides:
isInitialized
in classAbstractMessage
-
writeTo
public void writeTo(CodedOutputStream output) throws java.io.IOException
Description copied from interface:MessageLite
Serializes the message and writes it tooutput
. This does not flush or close the stream.- Specified by:
writeTo
in interfaceMessageLite
- Overrides:
writeTo
in classAbstractMessage
- Throws:
java.io.IOException
-
getSerializedSize
public int getSerializedSize()
Description copied from interface:MessageLite
Get the number of bytes required to encode this message. The result is only computed on the first call and memoized after that. If this message requires more than Integer.MAX_VALUE bytes to encode, the return value will be smaller than the actual number of bytes required and might be negative.- Specified by:
getSerializedSize
in interfaceMessageLite
- Overrides:
getSerializedSize
in classAbstractMessage
-
newBuilderForType
public DynamicMessage.Builder newBuilderForType()
Description copied from interface:MessageLite
Constructs a new builder for a message of the same type as this message.
-
toBuilder
public DynamicMessage.Builder toBuilder()
Description copied from interface:MessageLite
Constructs a builder initialized with the current message. Use this to derive a new message from the current one.
-
getParserForType
public Parser<DynamicMessage> getParserForType()
Description copied from interface:MessageLite
Gets the parser for a message of the same type as this message.
-
-