FileDescriptorProto

com.google.protobuf.descriptor.FileDescriptorProto
See theFileDescriptorProto companion object
final case class FileDescriptorProto(name: Option[String], `package`: Option[String], dependency: Seq[String], publicDependency: Seq[Int], weakDependency: Seq[Int], messageType: Seq[DescriptorProto], enumType: Seq[EnumDescriptorProto], service: Seq[ServiceDescriptorProto], extension: Seq[FieldDescriptorProto], options: Option[FileOptions], sourceCodeInfo: Option[SourceCodeInfo], syntax: Option[String], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[FileDescriptorProto]

Describes a complete .proto file.

Attributes

dependency

Names of files imported by this file.

messageType

All top-level definitions in this file.

name

file name, relative to root of source tree

package

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

publicDependency

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

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

weakDependency

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

Companion:
object
Graph
Supertypes
trait Updatable[FileDescriptorProto]
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def addAllDependency(`__vs`: Iterable[String]): FileDescriptorProto
def addAllPublicDependency(`__vs`: Iterable[Int]): FileDescriptorProto
def addAllWeakDependency(`__vs`: Iterable[Int]): FileDescriptorProto
def addDependency(`__vs`: String*): FileDescriptorProto
def getFieldByNumber(`__fieldNumber`: Int): Any
def getName: String
def getPackage: String
def getSyntax: String
override def serializedSize: Int

Attributes

Definition Classes
def toProtoString: String

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.

Attributes

Returns:

human-readable representation of this message.

def withDependency(`__v`: Seq[String]): FileDescriptorProto
def withName(`__v`: String): FileDescriptorProto
def withPackage(`__v`: String): FileDescriptorProto
def withSyntax(`__v`: String): FileDescriptorProto
def writeTo(`_output__`: CodedOutputStream): Unit

Serializes the message into the given coded output stream

Serializes the message into the given coded output stream

Attributes

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final def toByteArray: Array[Byte]

Serializes the message and returns a byte array containing its raw bytes

Serializes the message and returns a byte array containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
final def toByteString: ByteString

Serializes the message and returns a ByteString containing its raw bytes

Serializes the message and returns a ByteString containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
final def toPMessage: PMessage

Attributes

Inherited from:
GeneratedMessage

Attributes

Inherited from:
Updatable
final def writeDelimitedTo(output: OutputStream): Unit

Attributes

Inherited from:
GeneratedMessage
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Attributes

Inherited from:
GeneratedMessage