Class DiscardUnknownFieldsParser (3.19.4)
public final class DiscardUnknownFieldsParser
Parsers to discard unknown fields during parsing.
Static Methods
<T>wrap(Parser<T> parser)
public static final Parser<T> <T>wrap(Parser<T> parser)
Wraps a given Parser into a new Parser that discards unknown fields during
parsing.
Usage example:
private final static Parser<Foo> FOO_PARSER = DiscardUnknownFieldsParser.wrap(Foo.parser());
Foo parseFooDiscardUnknown(ByteBuffer input) throws IOException {
return FOO_PARSER.parseFrom(input);
}
Like all other implementations of Parser, this parser is stateless and thread-safe.
| Parameter |
| Name |
Description |
parser |
Parser<T>
The delegated parser that parses messages.
|
| Returns |
| Type |
Description |
Parser<T> |
a Parser that will discard unknown fields during parsing.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-10-30 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-10-30 UTC."],[],[]]