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

Alachisoft.NCache.Common.Logger.LoggerNames Maven / Gradle / Ivy

package Alachisoft.NCache.Common.Logger;

public enum LoggerNames
{
    OutputCache,
    HttpModule,
    SessionStoreProvider,
    Licence,
    SocketServerLogs,
    ClientLogs,
    CacheManagementSocketServer,
    BridgeActivityLog,
    MemcacheGateway,
    NCacheManager,
    CacheHostLogs,
    TayzGridManager,
    NCacheMonitor,
    LoaderService,
    APILogs,
    EventLogs,
    ServiceLogs,
    LicensingLog,
    UsageInfoLog;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy