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

it.unibo.jakta.agents.fsm.time.EpochTime.kt Maven / Gradle / Ivy

There is a newer version: 0.11.106
Show newest version
package it.unibo.jakta.agents.fsm.time

data class EpochTime(val value: Long) : Time {
    override fun compareTo(other: Time): Int = when (other) {
        is EpochTime -> value.compareTo(other.value)
        else -> throw IllegalArgumentException("Cannot compare EpochTime with $other")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy