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

cn.featherfly.common.model.enums.State Maven / Gradle / Ivy

package cn.featherfly.common.model.enums;

import cn.featherfly.common.model.Property;

/**
 * The Enum State.
 *
 * @author zhongj
 */
public enum State implements Property {

    /** The disablement. */
    DISABLEMENT,
    /** The enablement. */
    ENABLEMENT;

    /**
     * {@inheritDoc}
     */
    @Override
    public Integer value() {
        return ordinal();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy