com.alachisoft.ncache.client.IsolationLevel 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 IsolationLevel {
Default,
InProc,
OutProc;
public static IsolationLevel forValue(int value) {
return values()[value];
}
public int getValue() {
return this.ordinal();
}
}