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

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

The newest version!
package com.nohrd.bike

@Suppress("DataClassPrivateConstructor")
public data class Speed private constructor(val metersPerSecond: Double) {

    public companion object {

        @JvmStatic
        public fun fromMetersPerSecond(value: Number): Speed {
            return Speed(value.toDouble())
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy