com.google.protobuf.compiler.CodeGeneratorResponseKt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf-kotlin Show documentation
Show all versions of protobuf-kotlin Show documentation
Kotlin core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an
efficient yet extensible format.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: google/protobuf/compiler/plugin.proto
// Generated files should ignore deprecation warnings
@file:Suppress("DEPRECATION")
package com.google.protobuf.compiler;
@kotlin.jvm.JvmName("-initializecodeGeneratorResponse")
public inline fun codeGeneratorResponse(block: com.google.protobuf.compiler.CodeGeneratorResponseKt.Dsl.() -> kotlin.Unit): com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse =
com.google.protobuf.compiler.CodeGeneratorResponseKt.Dsl._create(com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.newBuilder()).apply { block() }._build()
/**
* Protobuf type `google.protobuf.compiler.CodeGeneratorResponse`
*/
public object CodeGeneratorResponseKt {
@kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class)
@com.google.protobuf.kotlin.ProtoDslMarker
public class Dsl private constructor(
private val _builder: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.Builder
) {
public companion object {
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _create(builder: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.Builder): Dsl = Dsl(builder)
}
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _build(): com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse = _builder.build()
/**
* `optional string error = 1 [json_name = "error"];`
*/
public var error: kotlin.String
@JvmName("getError")
get() = _builder.error
@JvmName("setError")
set(value) {
_builder.error = value
}
/**
* `optional string error = 1 [json_name = "error"];`
*/
public fun clearError() {
_builder.clearError()
}
/**
* `optional string error = 1 [json_name = "error"];`
* @return Whether the error field is set.
*/
public fun hasError(): kotlin.Boolean {
return _builder.hasError()
}
/**
* `optional uint64 supported_features = 2 [json_name = "supportedFeatures"];`
*/
public var supportedFeatures: kotlin.Long
@JvmName("getSupportedFeatures")
get() = _builder.supportedFeatures
@JvmName("setSupportedFeatures")
set(value) {
_builder.supportedFeatures = value
}
/**
* `optional uint64 supported_features = 2 [json_name = "supportedFeatures"];`
*/
public fun clearSupportedFeatures() {
_builder.clearSupportedFeatures()
}
/**
* `optional uint64 supported_features = 2 [json_name = "supportedFeatures"];`
* @return Whether the supportedFeatures field is set.
*/
public fun hasSupportedFeatures(): kotlin.Boolean {
return _builder.hasSupportedFeatures()
}
/**
* `optional int32 minimum_edition = 3 [json_name = "minimumEdition"];`
*/
public var minimumEdition: kotlin.Int
@JvmName("getMinimumEdition")
get() = _builder.minimumEdition
@JvmName("setMinimumEdition")
set(value) {
_builder.minimumEdition = value
}
/**
* `optional int32 minimum_edition = 3 [json_name = "minimumEdition"];`
*/
public fun clearMinimumEdition() {
_builder.clearMinimumEdition()
}
/**
* `optional int32 minimum_edition = 3 [json_name = "minimumEdition"];`
* @return Whether the minimumEdition field is set.
*/
public fun hasMinimumEdition(): kotlin.Boolean {
return _builder.hasMinimumEdition()
}
/**
* `optional int32 maximum_edition = 4 [json_name = "maximumEdition"];`
*/
public var maximumEdition: kotlin.Int
@JvmName("getMaximumEdition")
get() = _builder.maximumEdition
@JvmName("setMaximumEdition")
set(value) {
_builder.maximumEdition = value
}
/**
* `optional int32 maximum_edition = 4 [json_name = "maximumEdition"];`
*/
public fun clearMaximumEdition() {
_builder.clearMaximumEdition()
}
/**
* `optional int32 maximum_edition = 4 [json_name = "maximumEdition"];`
* @return Whether the maximumEdition field is set.
*/
public fun hasMaximumEdition(): kotlin.Boolean {
return _builder.hasMaximumEdition()
}
/**
* An uninstantiable, behaviorless type to represent the field in
* generics.
*/
@kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class)
public class FileProxy private constructor() : com.google.protobuf.kotlin.DslProxy()
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
*/
public val file: com.google.protobuf.kotlin.DslList
@kotlin.jvm.JvmSynthetic
get() = com.google.protobuf.kotlin.DslList(
_builder.fileList
)
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
* @param value The file to add.
*/
@kotlin.jvm.JvmSynthetic
@kotlin.jvm.JvmName("addFile")
public fun com.google.protobuf.kotlin.DslList.add(value: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File) {
_builder.addFile(value)
}
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
* @param value The file to add.
*/
@kotlin.jvm.JvmSynthetic
@kotlin.jvm.JvmName("plusAssignFile")
@Suppress("NOTHING_TO_INLINE")
public inline operator fun com.google.protobuf.kotlin.DslList.plusAssign(value: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File) {
add(value)
}
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
* @param values The file to add.
*/
@kotlin.jvm.JvmSynthetic
@kotlin.jvm.JvmName("addAllFile")
public fun com.google.protobuf.kotlin.DslList.addAll(values: kotlin.collections.Iterable) {
_builder.addAllFile(values)
}
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
* @param values The file to add.
*/
@kotlin.jvm.JvmSynthetic
@kotlin.jvm.JvmName("plusAssignAllFile")
@Suppress("NOTHING_TO_INLINE")
public inline operator fun com.google.protobuf.kotlin.DslList.plusAssign(values: kotlin.collections.Iterable) {
addAll(values)
}
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
* @param index The index to set the value at.
* @param value The file to set.
*/
@kotlin.jvm.JvmSynthetic
@kotlin.jvm.JvmName("setFile")
public operator fun com.google.protobuf.kotlin.DslList.set(index: kotlin.Int, value: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File) {
_builder.setFile(index, value)
}
/**
* `repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15 [json_name = "file"];`
*/
@kotlin.jvm.JvmSynthetic
@kotlin.jvm.JvmName("clearFile")
public fun com.google.protobuf.kotlin.DslList.clear() {
_builder.clearFile()
}
}
@kotlin.jvm.JvmName("-initializefile")
public inline fun file(block: com.google.protobuf.compiler.CodeGeneratorResponseKt.FileKt.Dsl.() -> kotlin.Unit): com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File =
com.google.protobuf.compiler.CodeGeneratorResponseKt.FileKt.Dsl._create(com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File.newBuilder()).apply { block() }._build()
/**
* Protobuf type `google.protobuf.compiler.CodeGeneratorResponse.File`
*/
public object FileKt {
@kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class)
@com.google.protobuf.kotlin.ProtoDslMarker
public class Dsl private constructor(
private val _builder: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File.Builder
) {
public companion object {
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _create(builder: com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File.Builder): Dsl = Dsl(builder)
}
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _build(): com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File = _builder.build()
/**
* `optional string name = 1 [json_name = "name"];`
*/
public var name: kotlin.String
@JvmName("getName")
get() = _builder.name
@JvmName("setName")
set(value) {
_builder.name = value
}
/**
* `optional string name = 1 [json_name = "name"];`
*/
public fun clearName() {
_builder.clearName()
}
/**
* `optional string name = 1 [json_name = "name"];`
* @return Whether the name field is set.
*/
public fun hasName(): kotlin.Boolean {
return _builder.hasName()
}
/**
* `optional string insertion_point = 2 [json_name = "insertionPoint"];`
*/
public var insertionPoint: kotlin.String
@JvmName("getInsertionPoint")
get() = _builder.insertionPoint
@JvmName("setInsertionPoint")
set(value) {
_builder.insertionPoint = value
}
/**
* `optional string insertion_point = 2 [json_name = "insertionPoint"];`
*/
public fun clearInsertionPoint() {
_builder.clearInsertionPoint()
}
/**
* `optional string insertion_point = 2 [json_name = "insertionPoint"];`
* @return Whether the insertionPoint field is set.
*/
public fun hasInsertionPoint(): kotlin.Boolean {
return _builder.hasInsertionPoint()
}
/**
* `optional string content = 15 [json_name = "content"];`
*/
public var content: kotlin.String
@JvmName("getContent")
get() = _builder.content
@JvmName("setContent")
set(value) {
_builder.content = value
}
/**
* `optional string content = 15 [json_name = "content"];`
*/
public fun clearContent() {
_builder.clearContent()
}
/**
* `optional string content = 15 [json_name = "content"];`
* @return Whether the content field is set.
*/
public fun hasContent(): kotlin.Boolean {
return _builder.hasContent()
}
/**
* `optional .google.protobuf.GeneratedCodeInfo generated_code_info = 16 [json_name = "generatedCodeInfo"];`
*/
public var generatedCodeInfo: com.google.protobuf.DescriptorProtos.GeneratedCodeInfo
@JvmName("getGeneratedCodeInfo")
get() = _builder.generatedCodeInfo
@JvmName("setGeneratedCodeInfo")
set(value) {
_builder.generatedCodeInfo = value
}
/**
* `optional .google.protobuf.GeneratedCodeInfo generated_code_info = 16 [json_name = "generatedCodeInfo"];`
*/
public fun clearGeneratedCodeInfo() {
_builder.clearGeneratedCodeInfo()
}
/**
* `optional .google.protobuf.GeneratedCodeInfo generated_code_info = 16 [json_name = "generatedCodeInfo"];`
* @return Whether the generatedCodeInfo field is set.
*/
public fun hasGeneratedCodeInfo(): kotlin.Boolean {
return _builder.hasGeneratedCodeInfo()
}
public val FileKt.Dsl.generatedCodeInfoOrNull: com.google.protobuf.DescriptorProtos.GeneratedCodeInfo?
get() = _builder.generatedCodeInfoOrNull
}
}
}
@kotlin.jvm.JvmSynthetic
public inline fun com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.copy(block: `com.google.protobuf.compiler`.CodeGeneratorResponseKt.Dsl.() -> kotlin.Unit): com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse =
`com.google.protobuf.compiler`.CodeGeneratorResponseKt.Dsl._create(this.toBuilder()).apply { block() }._build()
@kotlin.jvm.JvmSynthetic
public inline fun com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File.copy(block: `com.google.protobuf.compiler`.CodeGeneratorResponseKt.FileKt.Dsl.() -> kotlin.Unit): com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File =
`com.google.protobuf.compiler`.CodeGeneratorResponseKt.FileKt.Dsl._create(this.toBuilder()).apply { block() }._build()
public val com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.FileOrBuilder.generatedCodeInfoOrNull: com.google.protobuf.DescriptorProtos.GeneratedCodeInfo?
get() = if (hasGeneratedCodeInfo()) getGeneratedCodeInfo() else null