All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.protobuf.EnumOptionsKt.kt Maven / Gradle / Ivy

//Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/descriptor.proto

package com.google.protobuf;

@kotlin.jvm.JvmName("-initializeenumOptions")
public inline fun enumOptions(block: com.google.protobuf.EnumOptionsKt.Dsl.() -> kotlin.Unit): com.google.protobuf.DescriptorProtos.EnumOptions =
  com.google.protobuf.EnumOptionsKt.Dsl._create(com.google.protobuf.DescriptorProtos.EnumOptions.newBuilder()).apply { block() }._build()
public object EnumOptionsKt {
  @kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class)
  @com.google.protobuf.kotlin.ProtoDslMarker
  public class Dsl private constructor(
    private val _builder: com.google.protobuf.DescriptorProtos.EnumOptions.Builder
  ) {
    public companion object {
      @kotlin.jvm.JvmSynthetic
      @kotlin.PublishedApi
      internal fun _create(builder: com.google.protobuf.DescriptorProtos.EnumOptions.Builder): Dsl = Dsl(builder)
    }

    @kotlin.jvm.JvmSynthetic
    @kotlin.PublishedApi
    internal fun _build(): com.google.protobuf.DescriptorProtos.EnumOptions = _builder.build()

    /**
     * 
     * Set this option to true to allow mapping different tag names to the same
     * value.
     * 
* * optional bool allow_alias = 2; */ public var allowAlias: kotlin.Boolean @JvmName("getAllowAlias") get() = _builder.getAllowAlias() @JvmName("setAllowAlias") set(value) { _builder.setAllowAlias(value) } /** *
     * Set this option to true to allow mapping different tag names to the same
     * value.
     * 
* * optional bool allow_alias = 2; */ public fun clearAllowAlias() { _builder.clearAllowAlias() } /** *
     * Set this option to true to allow mapping different tag names to the same
     * value.
     * 
* * optional bool allow_alias = 2; * @return Whether the allowAlias field is set. */ public fun hasAllowAlias(): kotlin.Boolean { return _builder.hasAllowAlias() } /** *
     * 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.
     * 
* * optional bool deprecated = 3 [default = false]; */ public var deprecated: kotlin.Boolean @JvmName("getDeprecated") get() = _builder.getDeprecated() @JvmName("setDeprecated") set(value) { _builder.setDeprecated(value) } /** *
     * 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.
     * 
* * optional bool deprecated = 3 [default = false]; */ public fun clearDeprecated() { _builder.clearDeprecated() } /** *
     * 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.
     * 
* * optional bool deprecated = 3 [default = false]; * @return Whether the deprecated field is set. */ public fun hasDeprecated(): kotlin.Boolean { return _builder.hasDeprecated() } /** * An uninstantiable, behaviorless type to represent the field in * generics. */ @kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class) public class UninterpretedOptionProxy private constructor() : com.google.protobuf.kotlin.DslProxy() /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; */ public val uninterpretedOption: com.google.protobuf.kotlin.DslList @kotlin.jvm.JvmSynthetic get() = com.google.protobuf.kotlin.DslList( _builder.getUninterpretedOptionList() ) /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; * @param value The uninterpretedOption to add. */ @kotlin.jvm.JvmSynthetic @kotlin.jvm.JvmName("addUninterpretedOption") public fun com.google.protobuf.kotlin.DslList.add(value: com.google.protobuf.DescriptorProtos.UninterpretedOption) { _builder.addUninterpretedOption(value) } /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; * @param value The uninterpretedOption to add. */ @kotlin.jvm.JvmSynthetic @kotlin.jvm.JvmName("plusAssignUninterpretedOption") @Suppress("NOTHING_TO_INLINE") public inline operator fun com.google.protobuf.kotlin.DslList.plusAssign(value: com.google.protobuf.DescriptorProtos.UninterpretedOption) { add(value) } /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; * @param values The uninterpretedOption to add. */ @kotlin.jvm.JvmSynthetic @kotlin.jvm.JvmName("addAllUninterpretedOption") public fun com.google.protobuf.kotlin.DslList.addAll(values: kotlin.collections.Iterable) { _builder.addAllUninterpretedOption(values) } /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; * @param values The uninterpretedOption to add. */ @kotlin.jvm.JvmSynthetic @kotlin.jvm.JvmName("plusAssignAllUninterpretedOption") @Suppress("NOTHING_TO_INLINE") public inline operator fun com.google.protobuf.kotlin.DslList.plusAssign(values: kotlin.collections.Iterable) { addAll(values) } /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; * @param index The index to set the value at. * @param value The uninterpretedOption to set. */ @kotlin.jvm.JvmSynthetic @kotlin.jvm.JvmName("setUninterpretedOption") public operator fun com.google.protobuf.kotlin.DslList.set(index: kotlin.Int, value: com.google.protobuf.DescriptorProtos.UninterpretedOption) { _builder.setUninterpretedOption(index, value) } /** *
     * The parser stores options it doesn't recognize here. See above.
     * 
* * repeated .google.protobuf.UninterpretedOption uninterpreted_option = 999; */ @kotlin.jvm.JvmSynthetic @kotlin.jvm.JvmName("clearUninterpretedOption") public fun com.google.protobuf.kotlin.DslList.clear() { _builder.clearUninterpretedOption() } @Suppress("UNCHECKED_CAST") @kotlin.jvm.JvmSynthetic public operator fun get(extension: com.google.protobuf.ExtensionLite): T { return if (extension.isRepeated) { get(extension as com.google.protobuf.ExtensionLite>) as T } else { _builder.getExtension(extension) } } @kotlin.jvm.JvmSynthetic @kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class) @kotlin.jvm.JvmName("-getRepeatedExtension") public operator fun get( extension: com.google.protobuf.ExtensionLite> ): com.google.protobuf.kotlin.ExtensionList { return com.google.protobuf.kotlin.ExtensionList(extension, _builder.getExtension(extension)) } @kotlin.jvm.JvmSynthetic public operator fun contains(extension: com.google.protobuf.ExtensionLite): Boolean { return _builder.hasExtension(extension) } @kotlin.jvm.JvmSynthetic public fun clear(extension: com.google.protobuf.ExtensionLite) { _builder.clearExtension(extension) } @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun setExtension(extension: com.google.protobuf.ExtensionLite, value: T) { _builder.setExtension(extension, value) } @kotlin.jvm.JvmSynthetic @Suppress("NOTHING_TO_INLINE") public inline operator fun > set( extension: com.google.protobuf.ExtensionLite, value: T ) { setExtension(extension, value) } @kotlin.jvm.JvmSynthetic @Suppress("NOTHING_TO_INLINE") public inline operator fun set( extension: com.google.protobuf.ExtensionLite, value: com.google.protobuf.ByteString ) { setExtension(extension, value) } @kotlin.jvm.JvmSynthetic @Suppress("NOTHING_TO_INLINE") public inline operator fun set( extension: com.google.protobuf.ExtensionLite, value: T ) { setExtension(extension, value) } @kotlin.jvm.JvmSynthetic public fun com.google.protobuf.kotlin.ExtensionList.add(value: E) { _builder.addExtension(this.extension, value) } @kotlin.jvm.JvmSynthetic @Suppress("NOTHING_TO_INLINE") public inline operator fun com.google.protobuf.kotlin.ExtensionList.plusAssign(value: E) { add(value) } @kotlin.jvm.JvmSynthetic public fun com.google.protobuf.kotlin.ExtensionList.addAll(values: Iterable) { for (value in values) { add(value) } } @kotlin.jvm.JvmSynthetic @Suppress("NOTHING_TO_INLINE") public inline operator fun com.google.protobuf.kotlin.ExtensionList.plusAssign(values: Iterable) { addAll(values) } @kotlin.jvm.JvmSynthetic public operator fun com.google.protobuf.kotlin.ExtensionList.set(index: Int, value: E) { _builder.setExtension(this.extension, index, value) } @kotlin.jvm.JvmSynthetic @Suppress("NOTHING_TO_INLINE") public inline fun com.google.protobuf.kotlin.ExtensionList<*, com.google.protobuf.DescriptorProtos.EnumOptions>.clear() { clear(extension) } } } @kotlin.jvm.JvmSynthetic public inline fun com.google.protobuf.DescriptorProtos.EnumOptions.copy(block: com.google.protobuf.EnumOptionsKt.Dsl.() -> kotlin.Unit): com.google.protobuf.DescriptorProtos.EnumOptions = com.google.protobuf.EnumOptionsKt.Dsl._create(this.toBuilder()).apply { block() }._build()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy