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

com.nohrd.bike.Energy.kt Maven / Gradle / Ivy

The newest version!
package com.nohrd.bike

@Suppress("DataClassPrivateConstructor")
public data class Energy private constructor(val joules: Double) {

    public companion object {

        @JvmStatic
        public fun fromJoules(value: Number): Energy {
            return Energy(value.toDouble())
        }
    }
}

internal val Number.joules: Energy get() = Energy.fromJoules(this)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy