public abstract class AbstractParser<MessageType extends MessageLite> extends java.lang.Object implements Parser<MessageType>
Parser interface which implements as many methods of that
interface as possible in terms of other methods.
Note: This class implements all the convenience methods in the Parser interface. See
Parser for related javadocs. Subclasses need to implement Parser.parsePartialFrom(CodedInputStream, ExtensionRegistryLite)
| Constructor and Description |
|---|
AbstractParser() |
| Modifier and Type | Method and Description |
|---|---|
MessageType |
parseDelimitedFrom(java.io.InputStream input)
Like
Parser.parseFrom(InputStream), but does not read until EOF. |
MessageType |
parseDelimitedFrom(java.io.InputStream input,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseDelimitedFrom(InputStream) but supporting extensions. |
MessageType |
parseFrom(byte[] data)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(byte[] data,
ExtensionRegistryLite extensionRegistry)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(byte[] data,
int off,
int len)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(byte[] data,
int off,
int len,
ExtensionRegistryLite extensionRegistry)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(java.nio.ByteBuffer data)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(java.nio.ByteBuffer data,
ExtensionRegistryLite extensionRegistry)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(ByteString data)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(ByteString data,
ExtensionRegistryLite extensionRegistry)
Parses
data as a message of MessageType. |
MessageType |
parseFrom(CodedInputStream input)
Parses a message of
MessageType from the input. |
MessageType |
parseFrom(CodedInputStream input,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseFrom(CodedInputStream), but also parses extensions. |
MessageType |
parseFrom(java.io.InputStream input)
Parse a message of
MessageType from input. |
MessageType |
parseFrom(java.io.InputStream input,
ExtensionRegistryLite extensionRegistry)
Parses a message of
MessageType from input. |
MessageType |
parsePartialDelimitedFrom(java.io.InputStream input)
Like
Parser.parseDelimitedFrom(InputStream), but does not throw an exception if the message
is missing required fields. |
MessageType |
parsePartialDelimitedFrom(java.io.InputStream input,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseDelimitedFrom(InputStream, ExtensionRegistryLite), but does not throw an
exception if the message is missing required fields. |
MessageType |
parsePartialFrom(byte[] data)
Like
Parser.parseFrom(byte[]), but does not throw an exception if the message is missing
required fields. |
MessageType |
parsePartialFrom(byte[] data,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseFrom(byte[], ExtensionRegistryLite), but does not throw an exception if the
message is missing required fields. |
MessageType |
parsePartialFrom(byte[] data,
int off,
int len)
Like
Parser.parseFrom(byte[], int, int), but does not throw an exception if the message is
missing required fields. |
MessageType |
parsePartialFrom(byte[] data,
int off,
int len,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseFrom(ByteString, ExtensionRegistryLite), but does not throw an exception if
the message is missing required fields. |
MessageType |
parsePartialFrom(ByteString data)
Like
Parser.parseFrom(ByteString), but does not throw an exception if the message is missing
required fields. |
MessageType |
parsePartialFrom(ByteString data,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseFrom(ByteString, ExtensionRegistryLite), but does not throw an exception if
the message is missing required fields. |
MessageType |
parsePartialFrom(CodedInputStream input)
Like
Parser.parseFrom(CodedInputStream), but does not throw an exception if the message is
missing required fields. |
MessageType |
parsePartialFrom(java.io.InputStream input)
Like
Parser.parseFrom(InputStream), but does not throw an exception if the message is missing
required fields. |
MessageType |
parsePartialFrom(java.io.InputStream input,
ExtensionRegistryLite extensionRegistry)
Like
Parser.parseFrom(InputStream, ExtensionRegistryLite), but does not throw an exception if
the message is missing required fields. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitparsePartialFrompublic MessageType parsePartialFrom(CodedInputStream input) throws InvalidProtocolBufferException
ParserParser.parseFrom(CodedInputStream), but does not throw an exception if the message is
missing required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseFrom(CodedInputStream), but also parses extensions. The extensions that you
want to be able to parse must be registered in extensionRegistry. Extensions not in the
registry will be treated as unknown fields.parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(CodedInputStream input) throws InvalidProtocolBufferException
ParserMessageType from the input.
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.
parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(ByteString data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseFrom(ByteString, ExtensionRegistryLite), but does not throw an exception if
the message is missing required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(ByteString data) throws InvalidProtocolBufferException
ParserParser.parseFrom(ByteString), but does not throw an exception if the message is missing
required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream, ExtensionRegistryLite).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(ByteString data) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(java.nio.ByteBuffer data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream, ExtensionRegistryLite).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(java.nio.ByteBuffer data) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseFrom(ByteString, ExtensionRegistryLite), but does not throw an exception if
the message is missing required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(byte[] data, int off, int len) throws InvalidProtocolBufferException
ParserParser.parseFrom(byte[], int, int), but does not throw an exception if the message is
missing required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(byte[] data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseFrom(byte[], ExtensionRegistryLite), but does not throw an exception if the
message is missing required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(byte[] data) throws InvalidProtocolBufferException
ParserParser.parseFrom(byte[]), but does not throw an exception if the message is missing
required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(byte[] data, int off, int len, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream, ExtensionRegistryLite).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(byte[] data, int off, int len) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream, ExtensionRegistryLite).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(byte[] data) throws InvalidProtocolBufferException
Parserdata as a message of MessageType. This is just a small wrapper around
Parser.parseFrom(CodedInputStream).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(java.io.InputStream input, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseFrom(InputStream, ExtensionRegistryLite), but does not throw an exception if
the message is missing required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialFrom(java.io.InputStream input) throws InvalidProtocolBufferException
ParserParser.parseFrom(InputStream), but does not throw an exception if the message is missing
required fields. Instead, a partial message is returned.parsePartialFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(java.io.InputStream input, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserMessageType from input. This is just a small wrapper around
Parser.parseFrom(CodedInputStream, ExtensionRegistryLite).parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseFrom(java.io.InputStream input) throws InvalidProtocolBufferException
ParserMessageType from input. This is just a small wrapper around
Parser.parseFrom(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, use MessageLite.writeDelimitedTo(java.io.OutputStream) to write your message and Parser.parseDelimitedFrom(InputStream) to read it.
Despite usually reading the entire input, this does not close the stream.
parseFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialDelimitedFrom(java.io.InputStream input, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseDelimitedFrom(InputStream, ExtensionRegistryLite), but does not throw an
exception if the message is missing required fields. Instead, a partial message is returned.parsePartialDelimitedFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parsePartialDelimitedFrom(java.io.InputStream input) throws InvalidProtocolBufferException
ParserParser.parseDelimitedFrom(InputStream), but does not throw an exception if the message
is missing required fields. Instead, a partial message is returned.parsePartialDelimitedFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseDelimitedFrom(java.io.InputStream input, ExtensionRegistryLite extensionRegistry) throws InvalidProtocolBufferException
ParserParser.parseDelimitedFrom(InputStream) but supporting extensions.parseDelimitedFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferExceptionpublic MessageType parseDelimitedFrom(java.io.InputStream input) throws InvalidProtocolBufferException
ParserParser.parseFrom(InputStream), but does not read until EOF. Instead, the size of message
(encoded as a varint) is read first, then the message data. Use MessageLite.writeDelimitedTo(java.io.OutputStream) to write messages in this format.parseDelimitedFrom in interface Parser<MessageType extends MessageLite>InvalidProtocolBufferException