commonMain.aws.sdk.kotlin.services.glue.model.BooleanColumnStatisticsData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Defines column statistics supported for Boolean data columns.
*/
public class BooleanColumnStatisticsData private constructor(builder: Builder) {
/**
* The number of false values in the column.
*/
public val numberOfFalses: kotlin.Long = builder.numberOfFalses
/**
* The number of null values in the column.
*/
public val numberOfNulls: kotlin.Long = builder.numberOfNulls
/**
* The number of true values in the column.
*/
public val numberOfTrues: kotlin.Long = builder.numberOfTrues
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.BooleanColumnStatisticsData = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BooleanColumnStatisticsData(")
append("numberOfFalses=$numberOfFalses,")
append("numberOfNulls=$numberOfNulls,")
append("numberOfTrues=$numberOfTrues")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = numberOfFalses.hashCode()
result = 31 * result + (numberOfNulls.hashCode())
result = 31 * result + (numberOfTrues.hashCode())
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as BooleanColumnStatisticsData
if (numberOfFalses != other.numberOfFalses) return false
if (numberOfNulls != other.numberOfNulls) return false
if (numberOfTrues != other.numberOfTrues) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.BooleanColumnStatisticsData = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The number of false values in the column.
*/
public var numberOfFalses: kotlin.Long = 0L
/**
* The number of null values in the column.
*/
public var numberOfNulls: kotlin.Long = 0L
/**
* The number of true values in the column.
*/
public var numberOfTrues: kotlin.Long = 0L
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.BooleanColumnStatisticsData) : this() {
this.numberOfFalses = x.numberOfFalses
this.numberOfNulls = x.numberOfNulls
this.numberOfTrues = x.numberOfTrues
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.BooleanColumnStatisticsData = BooleanColumnStatisticsData(this)
internal fun correctErrors(): Builder {
return this
}
}
}