Class AbstractMessage (3.19.4)

public abstract class AbstractMessage extends AbstractMessageLite implements Message

A partial implementation of the Message interface which implements as many methods of that interface as possible in terms of other methods.

Inheritance

Object > AbstractMessageLite > AbstractMessage

Implements

Message

Static Methods

hashBoolean(boolean b) (deprecated)

protected static int hashBoolean(boolean b)

Deprecated. from v3.0.0-beta-3+, for compatibility with v2.5.0 and v2.6.1 generated code.

Parameter
NameDescription
bboolean
Returns
TypeDescription
int

hashEnum(Internal.EnumLite e) (deprecated)

protected static int hashEnum(Internal.EnumLite e)

Deprecated. from v3.0.0-beta-3+, for compatibility with v2.5.0 and v2.6.1 generated code.

Parameter
NameDescription
eInternal.EnumLite
Returns
TypeDescription
int

hashEnumList(List<? extends Internal.EnumLite> list) (deprecated)

protected static int hashEnumList(List<? extends Internal.EnumLite> list)

Deprecated. from v3.0.0-beta-3+, for compatibility with v2.5.0 and v2.6.1 generated code.

Parameter
NameDescription
listList<? extends com.google.protobuf.Internal.EnumLite>
Returns
TypeDescription
int

hashFields(int hash, Map<Descriptors.FieldDescriptor,Object> map)

protected static int hashFields(int hash, Map<Descriptors.FieldDescriptor,Object> map)

Get a hash code for given fields and values, using the given seed.

Parameters
NameDescription
hashint
mapMap<FieldDescriptor,Object>
Returns
TypeDescription
int

hashLong(long n) (deprecated)

protected static int hashLong(long n)

Deprecated. from v3.0.0-beta-3+, for compatibility with v2.5.0 and v2.6.1 generated code.

Parameter
NameDescription
nlong
Returns
TypeDescription
int

Constructors

AbstractMessage()

public AbstractMessage()

Fields

memoizedSize

protected int memoizedSize
Field Value
TypeDescription
int

Methods

equals(Object other)

public boolean equals(Object other)

Compares the specified object with this message for equality. Returns true if the given object is a message of the same type (as defined by getDescriptorForType()) and has identical values for all of its fields. Subclasses must implement this; inheriting Object.equals() is incorrect.

Parameter
NameDescription
otherObject
Returns
TypeDescription
boolean
Overrides

findInitializationErrors()

public List<String> findInitializationErrors()

Returns a list of field paths (e.g. "foo.bar.baz") of required fields which are not set in this message. You should call MessageLiteOrBuilder#isInitialized() first to check if there are any missing fields, as that method is likely to be much faster than this one even when the message is fully-initialized.

Returns
TypeDescription
List<String>

getInitializationErrorString()

public String getInitializationErrorString()

Returns a comma-delimited list of required fields which are not set in this message object. You should call MessageLiteOrBuilder#isInitialized() first to check if there are any missing fields, as that method is likely to be much faster than this one even when the message is fully-initialized.

Returns
TypeDescription
String

getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof)

public Descriptors.FieldDescriptor getOneofFieldDescriptor(Descriptors.OneofDescriptor oneof)

TODO(jieluo): Clear it when all subclasses have implemented this method.

Parameter
NameDescription
oneofDescriptors.OneofDescriptor
Returns
TypeDescription
Descriptors.FieldDescriptor

getSerializedSize()

public int getSerializedSize()

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.

Returns
TypeDescription
int

hasOneof(Descriptors.OneofDescriptor oneof)

public boolean hasOneof(Descriptors.OneofDescriptor oneof)

TODO(jieluo): Clear it when all subclasses have implemented this method.

Parameter
NameDescription
oneofDescriptors.OneofDescriptor
Returns
TypeDescription
boolean

hashCode()

public int hashCode()

Returns the hash code value for this message. The hash code of a message should mix the message's type (object identity of the descriptor) with its contents (known and unknown field values). Subclasses must implement this; inheriting Object.hashCode() is incorrect.

Returns
TypeDescription
int
Overrides

isInitialized()

public boolean isInitialized()

Returns true if all required fields in the message and all embedded messages are set, false otherwise.

See also: MessageOrBuilder#getInitializationErrorString()

Returns
TypeDescription
boolean

newBuilderForType(AbstractMessage.BuilderParent parent)

protected Message.Builder newBuilderForType(AbstractMessage.BuilderParent parent)

Create a nested builder.

Parameter
NameDescription
parentAbstractMessage.BuilderParent
Returns
TypeDescription
Message.Builder

toString()

public final String toString()

Converts the message to a string in protocol buffer text format. This is just a trivial wrapper around TextFormat.Printer#printToString(MessageOrBuilder).

Returns
TypeDescription
String
Overrides

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)

Serializes the message and writes it to output. This does not flush or close the stream.

Parameter
NameDescription
outputCodedOutputStream
Exceptions
TypeDescription
IOException