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];
}
}