it.unibo.jakta.agents.fsm.time.EpochTime.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakta-state-machine Show documentation
Show all versions of jakta-state-machine Show documentation
A Kotlin internal DSL for the definition of BDI agents
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")
}
}