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

com.alachisoft.ncache.licensing.ExpirationStatus Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package com.alachisoft.ncache.licensing;

/**
 * @author usama_tariq
 */
public enum ExpirationStatus
{
    InEvaluation,

    Licensed,

    InGracePeriod,

    Expired,

    ServerOnly;

    public int getValue()
    {
        return this.ordinal();
    }

    public static ExpirationStatus forValue(int value)
    {
        return values()[value];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy