parsley.internal.machine.Status.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2020 Parsley Contributors
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package parsley.internal.machine
private [machine] sealed abstract class Status
private [machine] case object Good extends Status
private [machine] case object Recover extends Status
private [machine] case object Finished extends Status
private [machine] case object Failed extends Status
© 2015 - 2024 Weber Informatics LLC | Privacy Policy