Class TextFormat.Parser.Builder

  • Enclosing class:
    TextFormat.Parser

    public static class TextFormat.Parser.Builder
    extends java.lang.Object
    Builder that can be used to obtain new instances of TextFormat.Parser.
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • setTypeRegistry

        public TextFormat.Parser.Builder setTypeRegistry​(TypeRegistry typeRegistry)
        Sets the TypeRegistry for resolving Any. If this is not set, TextFormat will not be able to parse Any unless Any is write as bytes.
        Throws:
        java.lang.IllegalArgumentException - if a registry is already set.
      • setAllowUnknownFields

        public TextFormat.Parser.Builder setAllowUnknownFields​(boolean allowUnknownFields)
        Set whether this parser will allow unknown fields. By default, an exception is thrown if an unknown field is encountered. If this is set, the parser will only log a warning. Allow unknown fields will also allow unknown extensions.

        Use of this parameter is discouraged which may hide some errors (e.g. spelling error on field name).

      • setAllowUnknownExtensions

        public TextFormat.Parser.Builder setAllowUnknownExtensions​(boolean allowUnknownExtensions)
        Set whether this parser will allow unknown extensions. By default, an exception is thrown if unknown extension is encountered. If this is set true, the parser will only log a warning. Allow unknown extensions does not mean allow normal unknown fields.