Class DescriptorProtos.FileOptions

    • Field Detail

      • JAVA_PACKAGE_FIELD_NUMBER

        public static final int JAVA_PACKAGE_FIELD_NUMBER
        See Also:
        Constant Field Values
      • JAVA_OUTER_CLASSNAME_FIELD_NUMBER

        public static final int JAVA_OUTER_CLASSNAME_FIELD_NUMBER
        See Also:
        Constant Field Values
      • JAVA_MULTIPLE_FILES_FIELD_NUMBER

        public static final int JAVA_MULTIPLE_FILES_FIELD_NUMBER
        See Also:
        Constant Field Values
      • JAVA_GENERATE_EQUALS_AND_HASH_FIELD_NUMBER

        public static final int JAVA_GENERATE_EQUALS_AND_HASH_FIELD_NUMBER
        See Also:
        Constant Field Values
      • JAVA_STRING_CHECK_UTF8_FIELD_NUMBER

        public static final int JAVA_STRING_CHECK_UTF8_FIELD_NUMBER
        See Also:
        Constant Field Values
      • OPTIMIZE_FOR_FIELD_NUMBER

        public static final int OPTIMIZE_FOR_FIELD_NUMBER
        See Also:
        Constant Field Values
      • GO_PACKAGE_FIELD_NUMBER

        public static final int GO_PACKAGE_FIELD_NUMBER
        See Also:
        Constant Field Values
      • CC_GENERIC_SERVICES_FIELD_NUMBER

        public static final int CC_GENERIC_SERVICES_FIELD_NUMBER
        See Also:
        Constant Field Values
      • JAVA_GENERIC_SERVICES_FIELD_NUMBER

        public static final int JAVA_GENERIC_SERVICES_FIELD_NUMBER
        See Also:
        Constant Field Values
      • PY_GENERIC_SERVICES_FIELD_NUMBER

        public static final int PY_GENERIC_SERVICES_FIELD_NUMBER
        See Also:
        Constant Field Values
      • DEPRECATED_FIELD_NUMBER

        public static final int DEPRECATED_FIELD_NUMBER
        See Also:
        Constant Field Values
      • UNINTERPRETED_OPTION_FIELD_NUMBER

        public static final int UNINTERPRETED_OPTION_FIELD_NUMBER
        See Also:
        Constant Field Values
    • Method Detail

      • getDefaultInstanceForType

        public DescriptorProtos.FileOptions getDefaultInstanceForType()
        Description copied from interface: MessageLiteOrBuilder
        Get an instance of the type with no fields set. Because no fields are set, all getters for singular fields will return default values and repeated fields will appear empty. This may or may not be a singleton. This differs from the getDefaultInstance() method of generated message classes in that this method is an abstract method of the MessageLite interface whereas getDefaultInstance() is a static method of a specific class. They return the same thing.
      • internalGetFieldAccessorTable

        protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
        Description copied from class: GeneratedMessage
        Get the FieldAccessorTable for this type. We can't have the message class pass this in to the constructor because of bootstrapping trouble with DescriptorProtos.
      • hasJavaPackage

        public boolean hasJavaPackage()
        optional string java_package = 1;
         Sets the Java package where classes generated from this .proto will be
         placed.  By default, the proto package is used, but this is often
         inappropriate because proto packages do not normally start with backwards
         domain names.
         
      • getJavaPackage

        public String getJavaPackage()
        optional string java_package = 1;
         Sets the Java package where classes generated from this .proto will be
         placed.  By default, the proto package is used, but this is often
         inappropriate because proto packages do not normally start with backwards
         domain names.
         
      • getJavaPackageBytes

        public ByteString getJavaPackageBytes()
        optional string java_package = 1;
         Sets the Java package where classes generated from this .proto will be
         placed.  By default, the proto package is used, but this is often
         inappropriate because proto packages do not normally start with backwards
         domain names.
         
      • hasJavaOuterClassname

        public boolean hasJavaOuterClassname()
        optional string java_outer_classname = 8;
         If set, all the classes from the .proto file are wrapped in a single
         outer class with the given name.  This applies to both Proto1
         (equivalent to the old "--one_java_file" option) and Proto2 (where
         a .proto always translates to a single class, but you may want to
         explicitly choose the class name).
         
      • getJavaOuterClassname

        public String getJavaOuterClassname()
        optional string java_outer_classname = 8;
         If set, all the classes from the .proto file are wrapped in a single
         outer class with the given name.  This applies to both Proto1
         (equivalent to the old "--one_java_file" option) and Proto2 (where
         a .proto always translates to a single class, but you may want to
         explicitly choose the class name).
         
      • getJavaOuterClassnameBytes

        public ByteString getJavaOuterClassnameBytes()
        optional string java_outer_classname = 8;
         If set, all the classes from the .proto file are wrapped in a single
         outer class with the given name.  This applies to both Proto1
         (equivalent to the old "--one_java_file" option) and Proto2 (where
         a .proto always translates to a single class, but you may want to
         explicitly choose the class name).
         
      • hasJavaMultipleFiles

        public boolean hasJavaMultipleFiles()
        optional bool java_multiple_files = 10 [default = false];
         If set true, then the Java code generator will generate a separate .java
         file for each top-level message, enum, and service defined in the .proto
         file.  Thus, these types will *not* be nested inside the outer class
         named by java_outer_classname.  However, the outer class will still be
         generated to contain the file's getDescriptor() method as well as any
         top-level extensions defined in the file.
         
      • getJavaMultipleFiles

        public boolean getJavaMultipleFiles()
        optional bool java_multiple_files = 10 [default = false];
         If set true, then the Java code generator will generate a separate .java
         file for each top-level message, enum, and service defined in the .proto
         file.  Thus, these types will *not* be nested inside the outer class
         named by java_outer_classname.  However, the outer class will still be
         generated to contain the file's getDescriptor() method as well as any
         top-level extensions defined in the file.
         
      • hasJavaGenerateEqualsAndHash

        public boolean hasJavaGenerateEqualsAndHash()
        optional bool java_generate_equals_and_hash = 20 [default = false];
         If set true, then the Java code generator will generate equals() and
         hashCode() methods for all messages defined in the .proto file.
         - In the full runtime, this is purely a speed optimization, as the
         AbstractMessage base class includes reflection-based implementations of
         these methods.
        - In the lite runtime, setting this option changes the semantics of
         equals() and hashCode() to more closely match those of the full runtime;
         the generated methods compute their results based on field values rather
         than object identity. (Implementations should not assume that hashcodes
         will be consistent across runtimes or versions of the protocol compiler.)
         
      • getJavaGenerateEqualsAndHash

        public boolean getJavaGenerateEqualsAndHash()
        optional bool java_generate_equals_and_hash = 20 [default = false];
         If set true, then the Java code generator will generate equals() and
         hashCode() methods for all messages defined in the .proto file.
         - In the full runtime, this is purely a speed optimization, as the
         AbstractMessage base class includes reflection-based implementations of
         these methods.
        - In the lite runtime, setting this option changes the semantics of
         equals() and hashCode() to more closely match those of the full runtime;
         the generated methods compute their results based on field values rather
         than object identity. (Implementations should not assume that hashcodes
         will be consistent across runtimes or versions of the protocol compiler.)
         
      • hasJavaStringCheckUtf8

        public boolean hasJavaStringCheckUtf8()
        optional bool java_string_check_utf8 = 27 [default = false];
         If set true, then the Java2 code generator will generate code that
         throws an exception whenever an attempt is made to assign a non-UTF-8
         byte sequence to a string field.
         Message reflection will do the same.
         However, an extension field still accepts non-UTF-8 byte sequences.
         This option has no effect on when used with the lite runtime.
         
      • getJavaStringCheckUtf8

        public boolean getJavaStringCheckUtf8()
        optional bool java_string_check_utf8 = 27 [default = false];
         If set true, then the Java2 code generator will generate code that
         throws an exception whenever an attempt is made to assign a non-UTF-8
         byte sequence to a string field.
         Message reflection will do the same.
         However, an extension field still accepts non-UTF-8 byte sequences.
         This option has no effect on when used with the lite runtime.
         
      • hasOptimizeFor

        public boolean hasOptimizeFor()
        optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];
      • hasGoPackage

        public boolean hasGoPackage()
        optional string go_package = 11;
         Sets the Go package where structs generated from this .proto will be
         placed.  There is no default.
         
      • getGoPackage

        public String getGoPackage()
        optional string go_package = 11;
         Sets the Go package where structs generated from this .proto will be
         placed.  There is no default.
         
      • getGoPackageBytes

        public ByteString getGoPackageBytes()
        optional string go_package = 11;
         Sets the Go package where structs generated from this .proto will be
         placed.  There is no default.
         
      • hasCcGenericServices

        public boolean hasCcGenericServices()
        optional bool cc_generic_services = 16 [default = false];
         Should generic services be generated in each language?  "Generic" services
         are not specific to any particular RPC system.  They are generated by the
         main code generators in each language (without additional plugins).
         Generic services were the only kind of service generation supported by
         early versions of proto2.
         Generic services are now considered deprecated in favor of using plugins
         that generate code specific to your particular RPC system.  Therefore,
         these default to false.  Old code which depends on generic services should
         explicitly set them to true.
         
      • getCcGenericServices

        public boolean getCcGenericServices()
        optional bool cc_generic_services = 16 [default = false];
         Should generic services be generated in each language?  "Generic" services
         are not specific to any particular RPC system.  They are generated by the
         main code generators in each language (without additional plugins).
         Generic services were the only kind of service generation supported by
         early versions of proto2.
         Generic services are now considered deprecated in favor of using plugins
         that generate code specific to your particular RPC system.  Therefore,
         these default to false.  Old code which depends on generic services should
         explicitly set them to true.
         
      • hasJavaGenericServices

        public boolean hasJavaGenericServices()
        optional bool java_generic_services = 17 [default = false];
      • getJavaGenericServices

        public boolean getJavaGenericServices()
        optional bool java_generic_services = 17 [default = false];
      • hasPyGenericServices

        public boolean hasPyGenericServices()
        optional bool py_generic_services = 18 [default = false];
      • getPyGenericServices

        public boolean getPyGenericServices()
        optional bool py_generic_services = 18 [default = false];
      • hasDeprecated

        public boolean hasDeprecated()
        optional bool deprecated = 23 [default = false];
         Is this file deprecated?
         Depending on the target platform, this can emit Deprecated annotations
         for everything in the file, or it will be completely ignored; in the very
         least, this is a formalization for deprecating files.
         
      • getDeprecated

        public boolean getDeprecated()
        optional bool deprecated = 23 [default = false];
         Is this file deprecated?
         Depending on the target platform, this can emit Deprecated annotations
         for everything in the file, or it will be completely ignored; in the very
         least, this is a formalization for deprecating files.
         
      • getUninterpretedOptionList

        public List<DescriptorProtos.UninterpretedOption> getUninterpretedOptionList()
        repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
         The parser stores options it doesn't recognize here. See above.
         
      • getUninterpretedOptionOrBuilderList

        public List<? extends DescriptorProtos.UninterpretedOptionOrBuilder> getUninterpretedOptionOrBuilderList()
        repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
         The parser stores options it doesn't recognize here. See above.
         
      • getUninterpretedOptionCount

        public int getUninterpretedOptionCount()
        repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
         The parser stores options it doesn't recognize here. See above.
         
      • getUninterpretedOption

        public DescriptorProtos.UninterpretedOption getUninterpretedOption(int index)
        repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
         The parser stores options it doesn't recognize here. See above.
         
      • getUninterpretedOptionOrBuilder

        public DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder(int index)
        repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
         The parser stores options it doesn't recognize here. See above.
         
      • getSerializedSize

        public int getSerializedSize()
        Description copied from interface: MessageLite
        Get the number of bytes required to encode this message. The result is only computed on the first call and memoized after that.