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,com.google.protobuf.MessageLite,com.google.protobuf.MessageLiteOrBuilder,MessageOrBuilder
public final class DynamicMessage extends AbstractMessage
An implementation ofMessagethat can represent arbitrary types, given aDescriptors.Descriptor.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDynamicMessage.BuilderBuilder forDynamicMessages.-
Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessage
AbstractMessage.BuilderParent
-
-
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 DynamicMessagegetDefaultInstance(Descriptors.Descriptor type)Get aDynamicMessagerepresenting the default instance of the given type.DynamicMessagegetDefaultInstanceForType()Descriptors.DescriptorgetDescriptorForType()Get the message's type's descriptor.java.lang.ObjectgetField(Descriptors.FieldDescriptor field)Obtains the value of the given field, or the default value if it is not set.Descriptors.FieldDescriptorgetOneofFieldDescriptor(Descriptors.OneofDescriptor oneof)Obtains the FieldDescriptor if the given oneof is set.com.google.protobuf.Parser<DynamicMessage>getParserForType()java.lang.ObjectgetRepeatedField(Descriptors.FieldDescriptor field, int index)Gets an element of a repeated field.intgetRepeatedFieldCount(Descriptors.FieldDescriptor field)Gets the number of elements of a repeated field.intgetSerializedSize()UnknownFieldSetgetUnknownFields()Get theUnknownFieldSetfor this message.booleanhasField(Descriptors.FieldDescriptor field)Returns true if the given field is set.booleanhasOneof(Descriptors.OneofDescriptor oneof)Returns true if the given oneof is set.booleanisInitialized()static DynamicMessage.BuildernewBuilder(Descriptors.Descriptor type)Construct aMessage.Builderfor the given type.static DynamicMessage.BuildernewBuilder(Message prototype)Construct aMessage.Builderfor a message of the same type asprototype, and initialize it withprototype's contents.DynamicMessage.BuildernewBuilderForType()static DynamicMessageparseFrom(Descriptors.Descriptor type, byte[] data)Parsedataas a message of the given type and return it.static DynamicMessageparseFrom(Descriptors.Descriptor type, byte[] data, ExtensionRegistry extensionRegistry)Parsedataas a message of the given type and return it.static DynamicMessageparseFrom(Descriptors.Descriptor type, com.google.protobuf.ByteString data)Parsedataas a message of the given type and return it.static DynamicMessageparseFrom(Descriptors.Descriptor type, com.google.protobuf.ByteString data, ExtensionRegistry extensionRegistry)Parsedataas a message of the given type and return it.static DynamicMessageparseFrom(Descriptors.Descriptor type, com.google.protobuf.CodedInputStream input)Parse a message of the given type from the given input stream.static DynamicMessageparseFrom(Descriptors.Descriptor type, com.google.protobuf.CodedInputStream input, ExtensionRegistry extensionRegistry)Parse a message of the given type from the given input stream.static DynamicMessageparseFrom(Descriptors.Descriptor type, java.io.InputStream input)Parse a message of the given type frominputand return it.static DynamicMessageparseFrom(Descriptors.Descriptor type, java.io.InputStream input, ExtensionRegistry extensionRegistry)Parse a message of the given type frominputand return it.DynamicMessage.BuildertoBuilder()voidwriteTo(com.google.protobuf.CodedOutputStream output)-
Methods inherited from class com.google.protobuf.AbstractMessage
equals, findInitializationErrors, getInitializationErrorString, hashCode, hashFields, newBuilderForType, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite
addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo
-
-
-
-
Method Detail
-
getDefaultInstance
public static DynamicMessage getDefaultInstance(Descriptors.Descriptor type)
Get aDynamicMessagerepresenting the default instance of the given type.
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, com.google.protobuf.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, com.google.protobuf.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, com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
Parsedataas a message of the given type and return it.- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, com.google.protobuf.ByteString data, ExtensionRegistry extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
Parsedataas a message of the given type and return it.- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
Parsedataas a message of the given type and return it.- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, byte[] data, ExtensionRegistry extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
Parsedataas a message of the given type and return it.- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static DynamicMessage parseFrom(Descriptors.Descriptor type, java.io.InputStream input) throws java.io.IOException
Parse a message of the given type frominputand 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 frominputand return it.- Throws:
java.io.IOException
-
newBuilder
public static DynamicMessage.Builder newBuilder(Descriptors.Descriptor type)
Construct aMessage.Builderfor the given type.
-
newBuilder
public static DynamicMessage.Builder newBuilder(Message prototype)
Construct aMessage.Builderfor a message of the same type asprototype, and initialize it withprototype's contents.
-
getDescriptorForType
public Descriptors.Descriptor getDescriptorForType()
Description copied from interface:MessageOrBuilderGet the message's type's descriptor. This differs from thegetDescriptor()method of generated message classes in that this method is an abstract method of theMessageinterface whereasgetDescriptor()is a static method of a specific class. They return the same thing.
-
getDefaultInstanceForType
public DynamicMessage getDefaultInstanceForType()
-
getAllFields
public java.util.Map<Descriptors.FieldDescriptor,java.lang.Object> getAllFields()
Description copied from interface:MessageOrBuilderReturns 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:MessageOrBuilderReturns true if the given oneof is set.- Specified by:
hasOneofin interfaceMessageOrBuilder- Overrides:
hasOneofin classAbstractMessage
-
getOneofFieldDescriptor
public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof)
Description copied from interface:MessageOrBuilderObtains the FieldDescriptor if the given oneof is set. Returns null if no field is set.- Specified by:
getOneofFieldDescriptorin interfaceMessageOrBuilder- Overrides:
getOneofFieldDescriptorin classAbstractMessage
-
hasField
public boolean hasField(Descriptors.FieldDescriptor field)
Description copied from interface:MessageOrBuilderReturns 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:MessageOrBuilderObtains 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:MessageOrBuilderGets 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:MessageOrBuilderGets 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:MessageOrBuilderGet theUnknownFieldSetfor this message.
-
isInitialized
public boolean isInitialized()
- Specified by:
isInitializedin interfacecom.google.protobuf.MessageLiteOrBuilder- Overrides:
isInitializedin classAbstractMessage
-
writeTo
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException- Specified by:
writeToin interfacecom.google.protobuf.MessageLite- Overrides:
writeToin classAbstractMessage- Throws:
java.io.IOException
-
getSerializedSize
public int getSerializedSize()
- Specified by:
getSerializedSizein interfacecom.google.protobuf.MessageLite- Overrides:
getSerializedSizein classAbstractMessage
-
newBuilderForType
public DynamicMessage.Builder newBuilderForType()
-
toBuilder
public DynamicMessage.Builder toBuilder()
-
getParserForType
public com.google.protobuf.Parser<DynamicMessage> getParserForType()
-
-