Class/Object

com.google.protobuf.descriptor

FileOptions

Related Docs: object FileOptions | package descriptor

Permalink

final case class FileOptions(javaPackage: Option[String] = None, javaOuterClassname: Option[String] = None, javaMultipleFiles: Option[Boolean] = None, javaGenerateEqualsAndHash: Option[Boolean] = None, javaStringCheckUtf8: Option[Boolean] = None, optimizeFor: Option[OptimizeMode] = None, goPackage: Option[String] = None, ccGenericServices: Option[Boolean] = None, javaGenericServices: Option[Boolean] = None, pyGenericServices: Option[Boolean] = None, deprecated: Option[Boolean] = None, ccEnableArenas: Option[Boolean] = None, objcClassPrefix: Option[String] = None, csharpNamespace: Option[String] = None, uninterpretedOption: Seq[UninterpretedOption] = Nil) extends trueaccord.scalapb.GeneratedMessage with trueaccord.scalapb.Message[FileOptions] with Updatable[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

If set true, then the Java code generator will generate equals() and hashCode() methods for all messages defined in the .proto file. This increases generated code size, potentially substantially for large protos, which may harm a memory-constrained application.

  • In the full runtime this is 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.)
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.

uninterpretedOption

The parser stores options it doesn't recognize here. See above.

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

Instance Constructors

  1. new FileOptions(javaPackage: Option[String] = None, javaOuterClassname: Option[String] = None, javaMultipleFiles: Option[Boolean] = None, javaGenerateEqualsAndHash: Option[Boolean] = None, javaStringCheckUtf8: Option[Boolean] = None, optimizeFor: Option[OptimizeMode] = None, goPackage: Option[String] = None, ccGenericServices: Option[Boolean] = None, javaGenericServices: Option[Boolean] = None, pyGenericServices: Option[Boolean] = None, deprecated: Option[Boolean] = None, ccEnableArenas: Option[Boolean] = None, objcClassPrefix: Option[String] = None, csharpNamespace: Option[String] = None, uninterpretedOption: Seq[UninterpretedOption] = Nil)

    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

    If set true, then the Java code generator will generate equals() and hashCode() methods for all messages defined in the .proto file. This increases generated code size, potentially substantially for large protos, which may harm a memory-constrained application.

    • In the full runtime this is 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.)
    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.

    uninterpretedOption

    The parser stores options it doesn't recognize here. See 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 clearPyGenericServices: FileOptions

    Permalink
  23. def clearUninterpretedOption: FileOptions

    Permalink
  24. def clone(): AnyRef

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

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

    Permalink

    Namespace for generated classes; defaults to the package.

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

  28. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. def getAllFields: Map[FieldDescriptor, Any]

    Permalink
    Definition Classes
    GeneratedMessage
  31. def getCcEnableArenas: Boolean

    Permalink
  32. def getCcGenericServices: Boolean

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

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

    Permalink
  35. def getDeprecated: Boolean

    Permalink
  36. def getField(__field: FieldDescriptor): Any

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  37. def getGoPackage: String

    Permalink
  38. def getJavaGenerateEqualsAndHash: Boolean

    Permalink
  39. def getJavaGenericServices: Boolean

    Permalink
  40. def getJavaMultipleFiles: Boolean

    Permalink
  41. def getJavaOuterClassname: String

    Permalink
  42. def getJavaPackage: String

    Permalink
  43. def getJavaStringCheckUtf8: Boolean

    Permalink
  44. def getObjcClassPrefix: String

    Permalink
  45. def getOptimizeFor: OptimizeMode

    Permalink
  46. def getPyGenericServices: Boolean

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

    Permalink
    Definition Classes
    Any
  49. val javaGenerateEqualsAndHash: Option[Boolean]

    Permalink

    If set true, then the Java code generator will generate equals() and hashCode() methods for all messages defined in the .proto file.

    If set true, then the Java code generator will generate equals() and hashCode() methods for all messages defined in the .proto file. This increases generated code size, potentially substantially for large protos, which may harm a memory-constrained application.

    • In the full runtime this is 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.)
  50. val javaGenericServices: Option[Boolean]

    Permalink
  51. 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.

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

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

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

  55. def mergeFrom(_input__: CodedInputStream): FileOptions

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

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

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

    Permalink
    Definition Classes
    AnyRef
  59. 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.

  60. val optimizeFor: Option[OptimizeMode]

    Permalink
  61. val pyGenericServices: Option[Boolean]

    Permalink
  62. final def serializedSize: Int

    Permalink
    Definition Classes
    FileOptionsGeneratedMessage
  63. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    GeneratedMessage
  65. def toString(): String

    Permalink
    Definition Classes
    FileOptions → AnyRef → Any
  66. val uninterpretedOption: Seq[UninterpretedOption]

    Permalink

    The parser stores options it doesn't recognize here.

    The parser stores options it doesn't recognize here. See above.

  67. def update(ms: (Lens[FileOptions, FileOptions]) ⇒ Mutation[FileOptions]*): FileOptions

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

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

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

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

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

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

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

    Permalink
  75. def withGoPackage(__v: String): FileOptions

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

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

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

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

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

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

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

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

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

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

    Permalink
  86. def writeDelimitedTo(output: OutputStream): Unit

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

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

    Permalink
    Definition Classes
    GeneratedMessage

Inherited from Product

Inherited from Equals

Inherited from Updatable[FileOptions]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped