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

com.alachisoft.ncache.common.monitoring.Publisher Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
package com.alachisoft.ncache.common.monitoring;
public enum Publisher
{
    NCache,
    Bridge,
    SystemMetrics,
    NCacheClient,
    BridgedCache;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy