![JAR search and dependency download from the Maven repository](/logo.png)
com.zaxxer.hikari.util.IsolationLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HikariCP Show documentation
Show all versions of HikariCP Show documentation
Ultimate JDBC Connection Pool
package com.zaxxer.hikari.util;
public enum IsolationLevel {
TRANSACTION_NONE(0),
TRANSACTION_READ_UNCOMMITTED(1),
TRANSACTION_READ_COMMITTED(2),
TRANSACTION_REPEATABLE_READ(4),
TRANSACTION_SERIALIZABLE(8),
TRANSACTION_SQL_SERVER_SNAPSHOT_ISOLATION_LEVEL(4096);
private final int levelId;
IsolationLevel(int levelId) {
this.levelId = levelId;
}
public int getLevelId() {
return levelId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy