Package akka.protobuf

Interface DescriptorProtos.FileOptionsOrBuilder

    • Method Detail

      • hasJavaPackage

        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

        java.lang.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

        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

        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

        java.lang.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

        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

        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

        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

        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. This is
         purely a speed optimization, as the AbstractMessage base class includes
         reflection-based implementations of these methods.
         
      • getJavaGenerateEqualsAndHash

        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. This is
         purely a speed optimization, as the AbstractMessage base class includes
         reflection-based implementations of these methods.
         
      • hasOptimizeFor

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

        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

        java.lang.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

        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

        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

        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

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

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

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

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

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

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

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

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

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