com.google.protobuf.DoubleValueKt.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/wrappers.proto
// Generated files should ignore deprecation warnings
@file:Suppress("DEPRECATION")
package com.google.protobuf;
@kotlin.jvm.JvmName("-initializedoubleValue")
public inline fun doubleValue(block: com.google.protobuf.DoubleValueKt.Dsl.() -> kotlin.Unit): com.google.protobuf.DoubleValue =
com.google.protobuf.DoubleValueKt.Dsl._create(com.google.protobuf.DoubleValue.newBuilder()).apply { block() }._build()
/**
* Protobuf type `google.protobuf.DoubleValue`
*/
public object DoubleValueKt {
@kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class)
@com.google.protobuf.kotlin.ProtoDslMarker
public class Dsl private constructor(
private val _builder: com.google.protobuf.DoubleValue.Builder
) {
public companion object {
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _create(builder: com.google.protobuf.DoubleValue.Builder): Dsl = Dsl(builder)
}
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _build(): com.google.protobuf.DoubleValue = _builder.build()
/**
* `double value = 1 [json_name = "value"];`
*/
public var value: kotlin.Double
@JvmName("getValue")
get() = _builder.getValue()
@JvmName("setValue")
set(value) {
_builder.setValue(value)
}
/**
* `double value = 1 [json_name = "value"];`
*/
public fun clearValue() {
_builder.clearValue()
}
}
}
@kotlin.jvm.JvmSynthetic
public inline fun com.google.protobuf.DoubleValue.copy(block: `com.google.protobuf`.DoubleValueKt.Dsl.() -> kotlin.Unit): com.google.protobuf.DoubleValue =
`com.google.protobuf`.DoubleValueKt.Dsl._create(this.toBuilder()).apply { block() }._build()