yakworks.commons.testing.pogos.GadgetStatus.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-commons Show documentation
Show all versions of groovy-commons Show documentation
common groovy and java utils
The newest version!
/*
* Copyright 2021 original authors
* SPDX-License-Identifier: Apache-2.0
*/
package yakworks.commons.testing.pogos
import groovy.transform.CompileStatic
import yakworks.commons.model.IdEnum
@CompileStatic
enum GadgetStatus implements IdEnum {
Active(1),
Inactive(2),
Void(3)
final Integer id
GadgetStatus(Integer id) { this.id = id }
}