public static interface DescriptorProtos.FileOptionsOrBuilder extends GeneratedMessage.ExtendableMessageOrBuilder<DescriptorProtos.FileOptions>
Modifier and Type | Method and Description |
---|---|
boolean |
getCcEnableArenas()
optional bool cc_enable_arenas = 31 [default = false]; |
boolean |
getCcGenericServices()
optional bool cc_generic_services = 16 [default = false]; |
String |
getCsharpNamespace()
optional string csharp_namespace = 37; |
ByteString |
getCsharpNamespaceBytes()
optional string csharp_namespace = 37; |
boolean |
getDeprecated()
optional bool deprecated = 23 [default = false]; |
String |
getGoPackage()
optional string go_package = 11; |
ByteString |
getGoPackageBytes()
optional string go_package = 11; |
boolean |
getJavaGenerateEqualsAndHash()
optional bool java_generate_equals_and_hash = 20 [default = false]; |
boolean |
getJavaGenericServices()
optional bool java_generic_services = 17 [default = false]; |
boolean |
getJavaMultipleFiles()
optional bool java_multiple_files = 10 [default = false]; |
String |
getJavaOuterClassname()
optional string java_outer_classname = 8; |
ByteString |
getJavaOuterClassnameBytes()
optional string java_outer_classname = 8; |
String |
getJavaPackage()
optional string java_package = 1; |
ByteString |
getJavaPackageBytes()
optional string java_package = 1; |
boolean |
getJavaStringCheckUtf8()
optional bool java_string_check_utf8 = 27 [default = false]; |
String |
getObjcClassPrefix()
optional string objc_class_prefix = 36; |
ByteString |
getObjcClassPrefixBytes()
optional string objc_class_prefix = 36; |
DescriptorProtos.FileOptions.OptimizeMode |
getOptimizeFor()
optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED]; |
boolean |
getPyGenericServices()
optional bool py_generic_services = 18 [default = false]; |
DescriptorProtos.UninterpretedOption |
getUninterpretedOption(int index)
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; |
int |
getUninterpretedOptionCount()
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; |
List<DescriptorProtos.UninterpretedOption> |
getUninterpretedOptionList()
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; |
DescriptorProtos.UninterpretedOptionOrBuilder |
getUninterpretedOptionOrBuilder(int index)
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; |
List<? extends DescriptorProtos.UninterpretedOptionOrBuilder> |
getUninterpretedOptionOrBuilderList()
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; |
boolean |
hasCcEnableArenas()
optional bool cc_enable_arenas = 31 [default = false]; |
boolean |
hasCcGenericServices()
optional bool cc_generic_services = 16 [default = false]; |
boolean |
hasCsharpNamespace()
optional string csharp_namespace = 37; |
boolean |
hasDeprecated()
optional bool deprecated = 23 [default = false]; |
boolean |
hasGoPackage()
optional string go_package = 11; |
boolean |
hasJavaGenerateEqualsAndHash()
optional bool java_generate_equals_and_hash = 20 [default = false]; |
boolean |
hasJavaGenericServices()
optional bool java_generic_services = 17 [default = false]; |
boolean |
hasJavaMultipleFiles()
optional bool java_multiple_files = 10 [default = false]; |
boolean |
hasJavaOuterClassname()
optional string java_outer_classname = 8; |
boolean |
hasJavaPackage()
optional string java_package = 1; |
boolean |
hasJavaStringCheckUtf8()
optional bool java_string_check_utf8 = 27 [default = false]; |
boolean |
hasObjcClassPrefix()
optional string objc_class_prefix = 36; |
boolean |
hasOptimizeFor()
optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED]; |
boolean |
hasPyGenericServices()
optional bool py_generic_services = 18 [default = false]; |
getDefaultInstanceForType, getExtension, getExtension, getExtensionCount, hasExtension
findInitializationErrors, getAllFields, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
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.
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.
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.
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).
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).
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).
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.
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.
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.)
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.)
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.
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.
boolean hasOptimizeFor()
optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];
DescriptorProtos.FileOptions.OptimizeMode getOptimizeFor()
optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];
boolean hasGoPackage()
optional string go_package = 11;
Sets the Go package where structs generated from this .proto will be placed. If omitted, the Go package will be derived from the following: - The basename of the package import path, if provided. - Otherwise, the package statement in the .proto file, if present. - Otherwise, the basename of the .proto file, without extension.
String getGoPackage()
optional string go_package = 11;
Sets the Go package where structs generated from this .proto will be placed. If omitted, the Go package will be derived from the following: - The basename of the package import path, if provided. - Otherwise, the package statement in the .proto file, if present. - Otherwise, the basename of the .proto file, without extension.
ByteString getGoPackageBytes()
optional string go_package = 11;
Sets the Go package where structs generated from this .proto will be placed. If omitted, the Go package will be derived from the following: - The basename of the package import path, if provided. - Otherwise, the package statement in the .proto file, if present. - Otherwise, the basename of the .proto file, without extension.
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 google.protobuf. 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.
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 google.protobuf. 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.
boolean hasJavaGenericServices()
optional bool java_generic_services = 17 [default = false];
boolean getJavaGenericServices()
optional bool java_generic_services = 17 [default = false];
boolean hasPyGenericServices()
optional bool py_generic_services = 18 [default = false];
boolean getPyGenericServices()
optional bool py_generic_services = 18 [default = false];
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.
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.
boolean hasCcEnableArenas()
optional bool cc_enable_arenas = 31 [default = false];
Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.
boolean getCcEnableArenas()
optional bool cc_enable_arenas = 31 [default = false];
Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.
boolean hasObjcClassPrefix()
optional string objc_class_prefix = 36;
Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.
String getObjcClassPrefix()
optional string objc_class_prefix = 36;
Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.
ByteString getObjcClassPrefixBytes()
optional string objc_class_prefix = 36;
Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.
boolean hasCsharpNamespace()
optional string csharp_namespace = 37;
Namespace for generated classes; defaults to the package.
String getCsharpNamespace()
optional string csharp_namespace = 37;
Namespace for generated classes; defaults to the package.
ByteString getCsharpNamespaceBytes()
optional string csharp_namespace = 37;
Namespace for generated classes; defaults to the package.
List<DescriptorProtos.UninterpretedOption> getUninterpretedOptionList()
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
The parser stores options it doesn't recognize here. See above.
DescriptorProtos.UninterpretedOption getUninterpretedOption(int index)
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
The parser stores options it doesn't recognize here. See above.
int getUninterpretedOptionCount()
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
The parser stores options it doesn't recognize here. See above.
List<? extends DescriptorProtos.UninterpretedOptionOrBuilder> getUninterpretedOptionOrBuilderList()
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
The parser stores options it doesn't recognize here. See above.
DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder(int index)
repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999;
The parser stores options it doesn't recognize here. See above.
Copyright © 2008–2015 Google. All rights reserved.