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

commonMain.aws.sdk.kotlin.services.personalize.model.ContinuousHyperParameterRange.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.personalize.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Provides the name and range of a continuous hyperparameter.
 */
public class ContinuousHyperParameterRange private constructor(builder: Builder) {
    /**
     * The maximum allowable value for the hyperparameter.
     */
    public val maxValue: kotlin.Double = builder.maxValue
    /**
     * The minimum allowable value for the hyperparameter.
     */
    public val minValue: kotlin.Double = builder.minValue
    /**
     * The name of the hyperparameter.
     */
    public val name: kotlin.String? = builder.name

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.personalize.model.ContinuousHyperParameterRange = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ContinuousHyperParameterRange(")
        append("maxValue=$maxValue,")
        append("minValue=$minValue,")
        append("name=$name")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = maxValue.hashCode()
        result = 31 * result + (minValue.hashCode())
        result = 31 * result + (name?.hashCode() ?: 0)
        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 ContinuousHyperParameterRange

        if (!(maxValue?.equals(other.maxValue) ?: (other.maxValue == null))) return false
        if (!(minValue?.equals(other.minValue) ?: (other.minValue == null))) return false
        if (name != other.name) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.personalize.model.ContinuousHyperParameterRange = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The maximum allowable value for the hyperparameter.
         */
        public var maxValue: kotlin.Double = 0.0
        /**
         * The minimum allowable value for the hyperparameter.
         */
        public var minValue: kotlin.Double = 0.0
        /**
         * The name of the hyperparameter.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.personalize.model.ContinuousHyperParameterRange) : this() {
            this.maxValue = x.maxValue
            this.minValue = x.minValue
            this.name = x.name
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.personalize.model.ContinuousHyperParameterRange = ContinuousHyperParameterRange(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy