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

yakworks.commons.testing.pogos.GadgetStatus.groovy Maven / Gradle / Ivy

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 }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy