Package

com.google.protobuf

descriptor

Permalink

package descriptor

Visibility
  1. Public
  2. All

Type Members

  1. final case class DescriptorProto(name: Option[String] = None, field: Seq[FieldDescriptorProto] = _root_.scala.collection.Seq.empty, extension: Seq[FieldDescriptorProto] = _root_.scala.collection.Seq.empty, nestedType: Seq[DescriptorProto] = _root_.scala.collection.Seq.empty, enumType: Seq[EnumDescriptorProto] = _root_.scala.collection.Seq.empty, extensionRange: Seq[ExtensionRange] = _root_.scala.collection.Seq.empty, oneofDecl: Seq[OneofDescriptorProto] = _root_.scala.collection.Seq.empty, options: Option[MessageOptions] = None, reservedRange: Seq[ReservedRange] = _root_.scala.collection.Seq.empty, reservedName: Seq[String] = _root_.scala.collection.Seq.empty) extends scalapb.GeneratedMessage with scalapb.Message[DescriptorProto] with Updatable[DescriptorProto] with Product with Serializable

    Permalink

    Describes a message type.

    Describes a message type.

    reservedName

    Reserved field names, which may not be used by fields in the same message. A given name may only be reserved once.

    Annotations
    @SerialVersionUID()
  2. final case class EnumDescriptorProto(name: Option[String] = None, value: Seq[EnumValueDescriptorProto] = _root_.scala.collection.Seq.empty, options: Option[EnumOptions] = None) extends scalapb.GeneratedMessage with scalapb.Message[EnumDescriptorProto] with Updatable[EnumDescriptorProto] with Product with Serializable

    Permalink

    Describes an enum type.

    Describes an enum type.

    Annotations
    @SerialVersionUID()
  3. final case class EnumOptions(allowAlias: Option[Boolean] = None, deprecated: Option[Boolean] = None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[EnumOptions] with Updatable[EnumOptions] with ExtendableMessage[EnumOptions] with Product with Serializable

    Permalink

    allowAlias

    Set this option to true to allow mapping different tag names to the same value.

    deprecated

    Is this enum deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum, or it will be completely ignored; in the very least, this is a formalization for deprecating enums.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  4. final case class EnumValueDescriptorProto(name: Option[String] = None, number: Option[Int] = None, options: Option[EnumValueOptions] = None) extends scalapb.GeneratedMessage with scalapb.Message[EnumValueDescriptorProto] with Updatable[EnumValueDescriptorProto] with Product with Serializable

    Permalink

    Describes a value within an enum.

    Describes a value within an enum.

    Annotations
    @SerialVersionUID()
  5. final case class EnumValueOptions(deprecated: Option[Boolean] = None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[EnumValueOptions] with Updatable[EnumValueOptions] with ExtendableMessage[EnumValueOptions] with Product with Serializable

    Permalink

    deprecated

    Is this enum value deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum value, or it will be completely ignored; in the very least, this is a formalization for deprecating enum values.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  6. final case class FieldDescriptorProto(name: Option[String] = None, number: Option[Int] = None, label: Option[Label] = None, type: Option[Type] = None, typeName: Option[String] = None, extendee: Option[String] = None, defaultValue: Option[String] = None, oneofIndex: Option[Int] = None, jsonName: Option[String] = None, options: Option[FieldOptions] = None) extends scalapb.GeneratedMessage with scalapb.Message[FieldDescriptorProto] with Updatable[FieldDescriptorProto] with Product with Serializable

    Permalink

    Describes a field within a message.

    Describes a field within a message.

    type

    If type_name is set, this need not be set. If both this and type_name are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.

    typeName

    For message and enum types, this is the name of the type. If the name starts with a '.', it is fully-qualified. Otherwise, C++-like scoping rules are used to find the type (i.e. first the nested types within this message are searched, then within the parent, on up to the root namespace).

    extendee

    For extensions, this is the name of the type being extended. It is resolved in the same manner as type_name.

    defaultValue

    For numeric types, contains the original text representation of the value. For booleans, "true" or "false". For strings, contains the default text contents (not escaped in any way). For bytes, contains the C escaped value. All bytes >= 128 are escaped. TODO(kenton): Base-64 encode?

    oneofIndex

    If set, gives the index of a oneof in the containing type's oneof_decl list. This field is a member of that oneof.

    jsonName

    JSON name of this field. The value is set by protocol compiler. If the user has set a "json_name" option on this field, that option's value will be used. Otherwise, it's deduced from the field's name by converting it to camelCase.

    Annotations
    @SerialVersionUID()
  7. final case class FieldOptions(ctype: Option[CType] = None, packed: Option[Boolean] = None, jstype: Option[JSType] = None, lazy: Option[Boolean] = None, deprecated: Option[Boolean] = None, weak: Option[Boolean] = None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[FieldOptions] with Updatable[FieldOptions] with ExtendableMessage[FieldOptions] with Product with Serializable

    Permalink

    ctype

    The ctype option instructs the C++ code generator to use a different representation of the field than it normally would. See the specific options below. This option is not yet implemented in the open source release -- sorry, we'll try to include it in a future version!

    packed

    The packed option can be enabled for repeated primitive fields to enable a more efficient representation on the wire. Rather than repeatedly writing the tag and type for each element, the entire array is encoded as a single length-delimited blob. In proto3, only explicit setting it to false will avoid using packed encoding.

    jstype

    The jstype option determines the JavaScript type used for values of the field. The option is permitted only for 64 bit integral and fixed types (int64, uint64, sint64, fixed64, sfixed64). By default these types are represented as JavaScript strings. This avoids loss of precision that can happen when a large value is converted to a floating point JavaScript numbers. Specifying JS_NUMBER for the jstype causes the generated JavaScript code to use the JavaScript "number" type instead of strings. This option is an enum to permit additional types to be added, e.g. goog.math.Integer.

    lazy

    Should this field be parsed lazily? Lazy applies only to message-type fields. It means that when the outer message is initially parsed, the inner message's contents will not be parsed but instead stored in encoded form. The inner message will actually be parsed when it is first accessed. This is only a hint. Implementations are free to choose whether to use eager or lazy parsing regardless of the value of this option. However, setting this option true suggests that the protocol author believes that using lazy parsing on this field is worth the additional bookkeeping overhead typically needed to implement it. This option does not affect the public interface of any generated code; all method signatures remain the same. Furthermore, thread-safety of the interface is not affected by this option; const methods remain safe to call from multiple threads concurrently, while non-const methods continue to require exclusive access. Note that implementations may choose not to check required fields within a lazy sub-message. That is, calling IsInitialized() on the outer message may return true even if the inner message has missing required fields. This is necessary because otherwise the inner message would have to be parsed in order to perform the check, defeating the purpose of lazy parsing. An implementation which chooses not to check required fields must be consistent about it. That is, for any particular sub-message, the implementation must either *always* check its required fields, or *never* check its required fields, regardless of whether or not the message has been parsed.

    deprecated

    Is this field deprecated? Depending on the target platform, this can emit Deprecated annotations for accessors, or it will be completely ignored; in the very least, this is a formalization for deprecating fields.

    weak

    For Google-internal migration only. Do not use.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  8. final case class FileDescriptorProto(name: Option[String] = None, package: Option[String] = None, dependency: Seq[String] = _root_.scala.collection.Seq.empty, publicDependency: Seq[Int] = _root_.scala.collection.Seq.empty, weakDependency: Seq[Int] = _root_.scala.collection.Seq.empty, messageType: Seq[DescriptorProto] = _root_.scala.collection.Seq.empty, enumType: Seq[EnumDescriptorProto] = _root_.scala.collection.Seq.empty, service: Seq[ServiceDescriptorProto] = _root_.scala.collection.Seq.empty, extension: Seq[FieldDescriptorProto] = _root_.scala.collection.Seq.empty, options: Option[FileOptions] = None, sourceCodeInfo: Option[SourceCodeInfo] = None, syntax: Option[String] = None) extends scalapb.GeneratedMessage with scalapb.Message[FileDescriptorProto] with Updatable[FileDescriptorProto] with Product with Serializable

    Permalink

    Describes a complete .proto file.

    Describes a complete .proto file.

    name

    file name, relative to root of source tree

    package

    e.g. "foo", "foo.bar", etc.

    dependency

    Names of files imported by this file.

    publicDependency

    Indexes of the public imported files in the dependency list above.

    weakDependency

    Indexes of the weak imported files in the dependency list. For Google-internal migration only. Do not use.

    messageType

    All top-level definitions in this file.

    sourceCodeInfo

    This field contains optional information about the original source code. You may safely remove this entire field without harming runtime functionality of the descriptors -- the information is needed only by development tools.

    syntax

    The syntax of the proto file. The supported values are "proto2" and "proto3".

    Annotations
    @SerialVersionUID()
  9. final case class FileDescriptorSet(file: Seq[FileDescriptorProto] = _root_.scala.collection.Seq.empty) extends scalapb.GeneratedMessage with scalapb.Message[FileDescriptorSet] with Updatable[FileDescriptorSet] with Product with Serializable

    Permalink

    The protocol compiler can output a FileDescriptorSet containing the .proto files it parses.

    The protocol compiler can output a FileDescriptorSet containing the .proto files it parses.

    Annotations
    @SerialVersionUID()
  10. 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, swiftPrefix: Option[String] = None, phpClassPrefix: Option[String] = 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

    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.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  11. final case class GeneratedCodeInfo(annotation: Seq[Annotation] = _root_.scala.collection.Seq.empty) extends scalapb.GeneratedMessage with scalapb.Message[GeneratedCodeInfo] with Updatable[GeneratedCodeInfo] with Product with Serializable

    Permalink

    Describes the relationship between generated code and its original source file.

    Describes the relationship between generated code and its original source file. A GeneratedCodeInfo message is associated with only one generated source file, but may contain references to different source .proto files.

    annotation

    An Annotation connects some span of text in generated code to an element of its generating .proto file.

    Annotations
    @SerialVersionUID()
  12. final case class MessageOptions(messageSetWireFormat: Option[Boolean] = None, noStandardDescriptorAccessor: Option[Boolean] = None, deprecated: Option[Boolean] = None, mapEntry: Option[Boolean] = None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[MessageOptions] with Updatable[MessageOptions] with ExtendableMessage[MessageOptions] with Product with Serializable

    Permalink

    messageSetWireFormat

    Set true to use the old proto1 MessageSet wire format for extensions. This is provided for backwards-compatibility with the MessageSet wire format. You should not use this for any other reason: It's less efficient, has fewer features, and is more complicated. The message must be defined exactly as follows: message Foo { option message_set_wire_format = true; extensions 4 to max; } Note that the message cannot have any defined fields; MessageSets only have extensions. All extensions of your type must be singular messages; e.g. they cannot be int32s, enums, or repeated messages. Because this is an option, the above two restrictions are not enforced by the protocol compiler.

    noStandardDescriptorAccessor

    Disables the generation of the standard "descriptor()" accessor, which can conflict with a field of the same name. This is meant to make migration from proto1 easier; new code should avoid fields named "descriptor".

    deprecated

    Is this message deprecated? Depending on the target platform, this can emit Deprecated annotations for the message, or it will be completely ignored; in the very least, this is a formalization for deprecating messages.

    mapEntry

    Whether the message is an automatically generated map entry type for the maps field. For maps fields: map<KeyType, ValueType> map_field = 1; The parsed descriptor looks like: message MapFieldEntry { option map_entry = true; optional KeyType key = 1; optional ValueType value = 2; } repeated MapFieldEntry map_field = 1; Implementations may choose not to generate the map_entry=true message, but use a native map in the target language to hold the keys and values. The reflection APIs in such implementions still need to work as if the field is a repeated message field. NOTE: Do not set the option in .proto files. Always use the maps syntax instead. The option should only be implicitly set by the proto compiler parser.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  13. final case class MethodDescriptorProto(name: Option[String] = None, inputType: Option[String] = None, outputType: Option[String] = None, options: Option[MethodOptions] = None, clientStreaming: Option[Boolean] = None, serverStreaming: Option[Boolean] = None) extends scalapb.GeneratedMessage with scalapb.Message[MethodDescriptorProto] with Updatable[MethodDescriptorProto] with Product with Serializable

    Permalink

    Describes a method of a service.

    Describes a method of a service.

    inputType

    Input and output type names. These are resolved in the same way as FieldDescriptorProto.type_name, but must refer to a message type.

    clientStreaming

    Identifies if client streams multiple client messages

    serverStreaming

    Identifies if server streams multiple server messages

    Annotations
    @SerialVersionUID()
  14. final case class MethodOptions(deprecated: Option[Boolean] = None, idempotencyLevel: Option[IdempotencyLevel] = None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[MethodOptions] with Updatable[MethodOptions] with ExtendableMessage[MethodOptions] with Product with Serializable

    Permalink

    deprecated

    Is this method deprecated? Depending on the target platform, this can emit Deprecated annotations for the method, or it will be completely ignored; in the very least, this is a formalization for deprecating methods.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  15. final case class OneofDescriptorProto(name: Option[String] = None, options: Option[OneofOptions] = None) extends scalapb.GeneratedMessage with scalapb.Message[OneofDescriptorProto] with Updatable[OneofDescriptorProto] with Product with Serializable

    Permalink

    Describes a oneof.

    Describes a oneof.

    Annotations
    @SerialVersionUID()
  16. final case class OneofOptions(uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[OneofOptions] with Updatable[OneofOptions] with ExtendableMessage[OneofOptions] with Product with Serializable

    Permalink

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  17. final case class ServiceDescriptorProto(name: Option[String] = None, method: Seq[MethodDescriptorProto] = _root_.scala.collection.Seq.empty, options: Option[ServiceOptions] = None) extends scalapb.GeneratedMessage with scalapb.Message[ServiceDescriptorProto] with Updatable[ServiceDescriptorProto] with Product with Serializable

    Permalink

    Describes a service.

    Describes a service.

    Annotations
    @SerialVersionUID()
  18. final case class ServiceOptions(deprecated: Option[Boolean] = None, uninterpretedOption: Seq[UninterpretedOption] = _root_.scala.collection.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet()) extends scalapb.GeneratedMessage with scalapb.Message[ServiceOptions] with Updatable[ServiceOptions] with ExtendableMessage[ServiceOptions] with Product with Serializable

    Permalink

    deprecated

    Is this service deprecated? Depending on the target platform, this can emit Deprecated annotations for the service, or it will be completely ignored; in the very least, this is a formalization for deprecating services.

    uninterpretedOption

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

    Annotations
    @SerialVersionUID()
  19. final case class SourceCodeInfo(location: Seq[Location] = _root_.scala.collection.Seq.empty) extends scalapb.GeneratedMessage with scalapb.Message[SourceCodeInfo] with Updatable[SourceCodeInfo] with Product with Serializable

    Permalink

    Encapsulates information about the original source file from which a FileDescriptorProto was generated.

    Encapsulates information about the original source file from which a FileDescriptorProto was generated.

    location

    A Location identifies a piece of source code in a .proto file which corresponds to a particular definition. This information is intended to be useful to IDEs, code indexers, documentation generators, and similar tools. For example, say we have a file like: message Foo { optional string foo = 1; } Let's look at just the field definition: optional string foo = 1; ^^^ a bc de f ghi We have the following locations: span path represents [a,i) [ 4, 0, 2, 0 ] The whole field definition. [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). [c,d) [ 4, 0, 2, 0, 5 ] The type (string). [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). [g,h) [ 4, 0, 2, 0, 3 ] The number (1). Notes:

    • A location may refer to a repeated field itself (i.e. not to any particular index within it). This is used whenever a set of elements are logically enclosed in a single code segment. For example, an entire extend block (possibly containing multiple extension definitions) will have an outer location whose path refers to the "extensions" repeated field without an index.
    • Multiple locations may have the same path. This happens when a single logical declaration is spread out across multiple places. The most obvious example is the "extend" block again -- there may be multiple extend blocks in the same scope, each of which will have the same path.
    • A location's span is not always a subset of its parent's span. For example, the "extendee" of an extension declaration appears at the beginning of the "extend" block and is shared by all extensions within the block.
    • Just because a location's span is a subset of some other location's span does not mean that it is a descendent. For example, a "group" defines both a type and a field in a single declaration. Thus, the locations corresponding to the type and field and their components will overlap.
    • Code which tries to interpret locations should probably be designed to ignore those that it doesn't understand, as more types of locations could be recorded in the future.
    Annotations
    @SerialVersionUID()
  20. final case class UninterpretedOption(name: Seq[NamePart] = _root_.scala.collection.Seq.empty, identifierValue: Option[String] = None, positiveIntValue: Option[Long] = None, negativeIntValue: Option[Long] = None, doubleValue: Option[Double] = None, stringValue: Option[ByteString] = None, aggregateValue: Option[String] = None) extends scalapb.GeneratedMessage with scalapb.Message[UninterpretedOption] with Updatable[UninterpretedOption] with Product with Serializable

    Permalink

    A message representing a option the parser does not recognize.

    A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

    identifierValue

    The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.

    Annotations
    @SerialVersionUID()

Value Members

  1. object DescriptorProto extends GeneratedMessageCompanion[DescriptorProto] with Serializable

    Permalink
  2. object DescriptorProtoCompanion extends GeneratedFileObject

    Permalink
  3. object EnumDescriptorProto extends GeneratedMessageCompanion[EnumDescriptorProto] with Serializable

    Permalink
  4. object EnumOptions extends GeneratedMessageCompanion[EnumOptions] with Serializable

    Permalink
  5. object EnumValueDescriptorProto extends GeneratedMessageCompanion[EnumValueDescriptorProto] with Serializable

    Permalink
  6. object EnumValueOptions extends GeneratedMessageCompanion[EnumValueOptions] with Serializable

    Permalink
  7. object FieldDescriptorProto extends GeneratedMessageCompanion[FieldDescriptorProto] with Serializable

    Permalink
  8. object FieldOptions extends GeneratedMessageCompanion[FieldOptions] with Serializable

    Permalink
  9. object FileDescriptorProto extends GeneratedMessageCompanion[FileDescriptorProto] with Serializable

    Permalink
  10. object FileDescriptorSet extends GeneratedMessageCompanion[FileDescriptorSet] with Serializable

    Permalink
  11. object FileOptions extends GeneratedMessageCompanion[FileOptions] with Serializable

    Permalink
  12. object GeneratedCodeInfo extends GeneratedMessageCompanion[GeneratedCodeInfo] with Serializable

    Permalink
  13. object MessageOptions extends GeneratedMessageCompanion[MessageOptions] with Serializable

    Permalink
  14. object MethodDescriptorProto extends GeneratedMessageCompanion[MethodDescriptorProto] with Serializable

    Permalink
  15. object MethodOptions extends GeneratedMessageCompanion[MethodOptions] with Serializable

    Permalink
  16. object OneofDescriptorProto extends GeneratedMessageCompanion[OneofDescriptorProto] with Serializable

    Permalink
  17. object OneofOptions extends GeneratedMessageCompanion[OneofOptions] with Serializable

    Permalink
  18. object ServiceDescriptorProto extends GeneratedMessageCompanion[ServiceDescriptorProto] with Serializable

    Permalink
  19. object ServiceOptions extends GeneratedMessageCompanion[ServiceOptions] with Serializable

    Permalink
  20. object SourceCodeInfo extends GeneratedMessageCompanion[SourceCodeInfo] with Serializable

    Permalink
  21. object UninterpretedOption extends GeneratedMessageCompanion[UninterpretedOption] with Serializable

    Permalink

Ungrouped