it.unibo.jakta.agents.fsm.impl.State.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.impl
/**
* State values that an FSM can hold.
*/
enum class State {
CREATED, STARTED, RUNNING, PAUSED, STOPPED
}