com.alachisoft.ncache.client.LogLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ncache-professional-client Show documentation
Show all versions of ncache-professional-client Show documentation
NCache Professional client for java.
package com.alachisoft.ncache.client;
public enum LogLevel {
Info,
Error,
Debug;
public static LogLevel forValue(int value) {
return values()[value];
}
public int getValue() {
return this.ordinal();
}
}