Class/Object

com.google.protobuf.descriptor

FileOptions

Related Docs: object FileOptions | package descriptor

Permalink

final case class FileOptions(javaPackage: Option[String] = _root_.scala.None, javaOuterClassname: Option[String] = _root_.scala.None, javaMultipleFiles: Option[Boolean] = _root_.scala.None, javaGenerateEqualsAndHash: Option[Boolean] = _root_.scala.None, javaStringCheckUtf8: Option[Boolean] = _root_.scala.None, optimizeFor: Option[OptimizeMode] = _root_.scala.None, goPackage: Option[String] = _root_.scala.None, ccGenericServices: Option[Boolean] = _root_.scala.None, javaGenericServices: Option[Boolean] = _root_.scala.None, pyGenericServices: Option[Boolean] = _root_.scala.None, phpGenericServices: Option[Boolean] = _root_.scala.None, deprecated: Option[Boolean] = _root_.scala.None, ccEnableArenas: Option[Boolean] = _root_.scala.None, objcClassPrefix: Option[String] = _root_.scala.None, csharpNamespace: Option[String] = _root_.scala.None, swiftPrefix: Option[String] = _root_.scala.None, phpClassPrefix: Option[String] = _root_.scala.None, phpNamespace: Option[String] = _root_.scala.None, phpMetadataNamespace: Option[String] = _root_.scala.None, rubyPackage: Option[String] = _root_.scala.None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[FileOptions] with Updatable[FileOptions] with ExtendableMessage[FileOptions] with Product with Serializable

javaPackage

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.

javaOuterClassname

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).

javaMultipleFiles

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.

javaGenerateEqualsAndHash

This option does nothing.

javaStringCheckUtf8

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.

goPackage

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.
ccGenericServices

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.

deprecated

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.

ccEnableArenas

Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.

objcClassPrefix

Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.

csharpNamespace

Namespace for generated classes; defaults to the package.

swiftPrefix

By default Swift generators will take the proto package and CamelCase it replacing '.' with underscore and use that to prefix the types/symbols defined. When this options is provided, they will use this value instead to prefix the types/symbols defined.

phpClassPrefix

Sets the php class prefix which is prepended to all php generated classes from this .proto. Default is empty.

phpNamespace

Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace.

phpMetadataNamespace

Use this option to change the namespace of php generated metadata classes. Default is empty. When this option is empty, the proto file name will be used for determining the namespace.

rubyPackage

Use this option to change the package of ruby generated classes. Default is empty. When this option is not set, the package name will be used for determining the ruby package.

uninterpretedOption

The parser stores options it doesn't recognize here. See the documentation for the "Options" section above.

Annotations
@SerialVersionUID()
Linear Supertypes
Product, Equals, ExtendableMessage[FileOptions], Updatable[FileOptions], scalapb.Message[FileOptions], scalapb.GeneratedMessage, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileOptions
  2. Product
  3. Equals
  4. ExtendableMessage
  5. Updatable
  6. Message
  7. GeneratedMessage
  8. Serializable
  9. Serializable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FileOptions(javaPackage: Option[String] = _root_.scala.None, javaOuterClassname: Option[String] = _root_.scala.None, javaMultipleFiles: Option[Boolean] = _root_.scala.None, javaGenerateEqualsAndHash: Option[Boolean] = _root_.scala.None, javaStringCheckUtf8: Option[Boolean] = _root_.scala.None, optimizeFor: Option[OptimizeMode] = _root_.scala.None, goPackage: Option[String] = _root_.scala.None, ccGenericServices: Option[Boolean] = _root_.scala.None, javaGenericServices: Option[Boolean] = _root_.scala.None, pyGenericServices: Option[Boolean] = _root_.scala.None, phpGenericServices: Option[Boolean] = _root_.scala.None, deprecated: Option[Boolean] = _root_.scala.None, ccEnableArenas: Option[Boolean] = _root_.scala.None, objcClassPrefix: Option[String] = _root_.scala.None, csharpNamespace: Option[String] = _root_.scala.None, swiftPrefix: Option[String] = _root_.scala.None, phpClassPrefix: Option[String] = _root_.scala.None, phpNamespace: Option[String] = _root_.scala.None, phpMetadataNamespace: Option[String] = _root_.scala.None, rubyPackage: Option[String] = _root_.scala.None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet())

    Permalink

    javaPackage

    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.

    javaOuterClassname

    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).

    javaMultipleFiles

    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.

    javaGenerateEqualsAndHash

    This option does nothing.

    javaStringCheckUtf8

    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.

    goPackage

    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.
    ccGenericServices

    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.

    deprecated

    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.

    ccEnableArenas

    Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.

    objcClassPrefix

    Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.

    csharpNamespace

    Namespace for generated classes; defaults to the package.

    swiftPrefix

    By default Swift generators will take the proto package and CamelCase it replacing '.' with underscore and use that to prefix the types/symbols defined. When this options is provided, they will use this value instead to prefix the types/symbols defined.

    phpClassPrefix

    Sets the php class prefix which is prepended to all php generated classes from this .proto. Default is empty.

    phpNamespace

    Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace.

    phpMetadataNamespace

    Use this option to change the namespace of php generated metadata classes. Default is empty. When this option is empty, the proto file name will be used for determining the namespace.

    rubyPackage

    Use this option to change the package of ruby generated classes. Default is empty. When this option is not set, the package name will be used for determining the ruby package.

    uninterpretedOption

    The parser stores options it doesn't recognize here. See the documentation for the "Options" section above.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addAllUninterpretedOption(__vs: TraversableOnce[UninterpretedOption]): FileOptions

    Permalink
  5. def addUninterpretedOption(__vs: UninterpretedOption*): FileOptions

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val ccEnableArenas: Option[Boolean]

    Permalink

    Enables the use of arenas for the proto messages in this file.

    Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.

  8. val ccGenericServices: Option[Boolean]

    Permalink

    Should generic services be generated in each language? "Generic" services are not specific to any particular RPC system.

    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.

  9. def clearCcEnableArenas: FileOptions

    Permalink
  10. def clearCcGenericServices: FileOptions

    Permalink
  11. def clearCsharpNamespace: FileOptions

    Permalink
  12. def clearDeprecated: FileOptions

    Permalink
  13. def clearGoPackage: FileOptions

    Permalink
  14. def clearJavaGenerateEqualsAndHash: FileOptions

    Permalink
  15. def clearJavaGenericServices: FileOptions

    Permalink
  16. def clearJavaMultipleFiles: FileOptions

    Permalink
  17. def clearJavaOuterClassname: FileOptions

    Permalink
  18. def clearJavaPackage: FileOptions

    Permalink
  19. def clearJavaStringCheckUtf8: FileOptions

    Permalink
  20. def clearObjcClassPrefix: FileOptions

    Permalink
  21. def clearOptimizeFor: FileOptions

    Permalink
  22. def clearPhpClassPrefix: FileOptions

    Permalink
  23. def clearPhpGenericServices: FileOptions

    Permalink
  24. def clearPhpMetadataNamespace: FileOptions

    Permalink
  25. def clearPhpNamespace: FileOptions

    Permalink
  26. def clearPyGenericServices: FileOptions

    Permalink
  27. def clearRubyPackage: FileOptions

    Permalink
  28. def clearSwiftPrefix: FileOptions

    Permalink
  29. def clearUninterpretedOption: FileOptions

    Permalink
  30. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def companion: FileOptions.type

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  32. val csharpNamespace: Option[String]

    Permalink

    Namespace for generated classes; defaults to the package.

  33. val deprecated: Option[Boolean]

    Permalink

    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.

  34. def discardUnknownFields: FileOptions

    Permalink
  35. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  36. def extension[T](generatedExtension: GeneratedExtension[FileOptions, T]): T

    Permalink
    Definition Classes
    ExtendableMessage
  37. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  38. def getCcEnableArenas: Boolean

    Permalink
  39. def getCcGenericServices: Boolean

    Permalink
  40. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  41. def getCsharpNamespace: String

    Permalink
  42. def getDeprecated: Boolean

    Permalink
  43. def getField(__field: FieldDescriptor): PValue

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  44. def getFieldByNumber(__fieldNumber: Int): Any

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  45. def getGoPackage: String

    Permalink
  46. def getJavaGenerateEqualsAndHash: Boolean

    Permalink
  47. def getJavaGenericServices: Boolean

    Permalink
  48. def getJavaMultipleFiles: Boolean

    Permalink
  49. def getJavaOuterClassname: String

    Permalink
  50. def getJavaPackage: String

    Permalink
  51. def getJavaStringCheckUtf8: Boolean

    Permalink
  52. def getObjcClassPrefix: String

    Permalink
  53. def getOptimizeFor: OptimizeMode

    Permalink
  54. def getPhpClassPrefix: String

    Permalink
  55. def getPhpGenericServices: Boolean

    Permalink
  56. def getPhpMetadataNamespace: String

    Permalink
  57. def getPhpNamespace: String

    Permalink
  58. def getPyGenericServices: Boolean

    Permalink
  59. def getRubyPackage: String

    Permalink
  60. def getSwiftPrefix: String

    Permalink
  61. val goPackage: Option[String]

    Permalink

    Sets the Go package where structs generated from this .proto will be placed.

    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.
  62. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  63. val javaGenericServices: Option[Boolean]

    Permalink
  64. val javaMultipleFiles: Option[Boolean]

    Permalink

    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.

    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.

  65. val javaOuterClassname: Option[String]

    Permalink

    If set, all the classes from the .proto file are wrapped in a single outer class with the given name.

    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).

  66. val javaPackage: Option[String]

    Permalink

    Sets the Java package where classes generated from this .proto will be placed.

    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.

  67. val javaStringCheckUtf8: Option[Boolean]

    Permalink

    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.

    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.

  68. def mergeFrom(_input__: CodedInputStream): FileOptions

    Permalink
    Definition Classes
    FileOptionsMessage
  69. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  70. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  71. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  72. val objcClassPrefix: Option[String]

    Permalink

    Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto.

    Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.

  73. val optimizeFor: Option[OptimizeMode]

    Permalink
  74. val phpClassPrefix: Option[String]

    Permalink

    Sets the php class prefix which is prepended to all php generated classes from this .proto.

    Sets the php class prefix which is prepended to all php generated classes from this .proto. Default is empty.

  75. val phpGenericServices: Option[Boolean]

    Permalink
  76. val phpMetadataNamespace: Option[String]

    Permalink

    Use this option to change the namespace of php generated metadata classes.

    Use this option to change the namespace of php generated metadata classes. Default is empty. When this option is empty, the proto file name will be used for determining the namespace.

  77. val phpNamespace: Option[String]

    Permalink

    Use this option to change the namespace of php generated classes.

    Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace.

  78. val pyGenericServices: Option[Boolean]

    Permalink
  79. val rubyPackage: Option[String]

    Permalink

    Use this option to change the package of ruby generated classes.

    Use this option to change the package of ruby generated classes. Default is empty. When this option is not set, the package name will be used for determining the ruby package.

  80. final def serializedSize: Int

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  81. val swiftPrefix: Option[String]

    Permalink

    By default Swift generators will take the proto package and CamelCase it replacing '.' with underscore and use that to prefix the types/symbols defined.

    By default Swift generators will take the proto package and CamelCase it replacing '.' with underscore and use that to prefix the types/symbols defined. When this options is provided, they will use this value instead to prefix the types/symbols defined.

  82. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  83. def toByteArray: Array[Byte]

    Permalink
    Definition Classes
    GeneratedMessage
  84. def toByteString: ByteString

    Permalink
    Definition Classes
    GeneratedMessage
  85. def toPMessage: PMessage

    Permalink
    Definition Classes
    GeneratedMessage
  86. def toProtoString: String

    Permalink

    Returns a human-readable ASCII format representation of this message.

    Returns a human-readable ASCII format representation of this message.

    The original message can be decoded from this format by using fromAscii on the companion object.

    returns

    human-readable representation of this message.

    Definition Classes
    FileOptionsGeneratedMessage
  87. val uninterpretedOption: Seq[UninterpretedOption]

    Permalink

    The parser stores options it doesn't recognize here.

    The parser stores options it doesn't recognize here. See the documentation for the "Options" section above.

  88. val unknownFields: scalapb.UnknownFieldSet

    Permalink
    Definition Classes
    FileOptionsExtendableMessage
  89. def update(ms: (Lens[FileOptions, FileOptions]) ⇒ Mutation[FileOptions]*): FileOptions

    Permalink
    Definition Classes
    Updatable
  90. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  91. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  92. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  93. def withCcEnableArenas(__v: Boolean): FileOptions

    Permalink
  94. def withCcGenericServices(__v: Boolean): FileOptions

    Permalink
  95. def withCsharpNamespace(__v: String): FileOptions

    Permalink
  96. def withDeprecated(__v: Boolean): FileOptions

    Permalink
  97. def withExtension[T](generatedExtension: GeneratedExtension[FileOptions, T])(value: T): FileOptions

    Permalink
    Definition Classes
    ExtendableMessage
  98. def withGoPackage(__v: String): FileOptions

    Permalink
  99. def withJavaGenerateEqualsAndHash(__v: Boolean): FileOptions

    Permalink
  100. def withJavaGenericServices(__v: Boolean): FileOptions

    Permalink
  101. def withJavaMultipleFiles(__v: Boolean): FileOptions

    Permalink
  102. def withJavaOuterClassname(__v: String): FileOptions

    Permalink
  103. def withJavaPackage(__v: String): FileOptions

    Permalink
  104. def withJavaStringCheckUtf8(__v: Boolean): FileOptions

    Permalink
  105. def withObjcClassPrefix(__v: String): FileOptions

    Permalink
  106. def withOptimizeFor(__v: OptimizeMode): FileOptions

    Permalink
  107. def withPhpClassPrefix(__v: String): FileOptions

    Permalink
  108. def withPhpGenericServices(__v: Boolean): FileOptions

    Permalink
  109. def withPhpMetadataNamespace(__v: String): FileOptions

    Permalink
  110. def withPhpNamespace(__v: String): FileOptions

    Permalink
  111. def withPyGenericServices(__v: Boolean): FileOptions

    Permalink
  112. def withRubyPackage(__v: String): FileOptions

    Permalink
  113. def withSwiftPrefix(__v: String): FileOptions

    Permalink
  114. def withUninterpretedOption(__v: Seq[UninterpretedOption]): FileOptions

    Permalink
  115. def withUnknownFields(__v: scalapb.UnknownFieldSet): FileOptions

    Permalink
    Definition Classes
    FileOptionsExtendableMessage
  116. def writeDelimitedTo(output: OutputStream): Unit

    Permalink
    Definition Classes
    GeneratedMessage
  117. def writeTo(_output__: CodedOutputStream): Unit

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  118. def writeTo(output: OutputStream): Unit

    Permalink
    Definition Classes
    GeneratedMessage

Deprecated Value Members

  1. def getAllFields: Map[FieldDescriptor, Any]

    Permalink
    Definition Classes
    GeneratedMessage
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) Use toPMessage

  2. def getField(field: FieldDescriptor): Any

    Permalink
    Definition Classes
    GeneratedMessage
    Annotations
    @deprecated
    Deprecated

    (Since version 0.6.0) Use getField that accepts a ScalaPB descriptor and returns PValue

  3. val javaGenerateEqualsAndHash: Option[Boolean]

    Permalink

    This option does nothing.

    This option does nothing.

    Annotations
    @deprecated
    Deprecated

    (Since version ) Marked as deprecated in proto file

Inherited from Product

Inherited from Equals

Inherited from ExtendableMessage[FileOptions]

Inherited from Updatable[FileOptions]

Inherited from scalapb.Message[FileOptions]

Inherited from scalapb.GeneratedMessage

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped