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

Alachisoft.NCache.Common.Monitoring.CacheNodeStatus Maven / Gradle / Ivy

package Alachisoft.NCache.Common.Monitoring;

/**
 * NodeStatus reflects the staus of a clustered node.
 */
//C# TO JAVA CONVERTER WARNING: Unsigned integer types have no direct equivalent in Java:
//ORIGINAL LINE: public enum CacheNodeStatus:byte
public enum CacheNodeStatus {
    Stopped,
    Running,
    InStateTransfer;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy