Enum Isolation

java.lang.Object
java.lang.Enum<Isolation>
org.mybatis.guice.transactional.Isolation
All Implemented Interfaces:
Serializable, Comparable<Isolation>

public enum Isolation extends Enum<Isolation>
Enum of isolation levels. This enum exists because Java annotations do not support null default values - so we need to add the DEFAULT level which means - do not specify an isolation level.
Since:
3.1
Author:
Jeff Butler
  • Enum Constant Details

    • DEFAULT

      public static final Isolation DEFAULT
    • NONE

      public static final Isolation NONE
    • READ_COMMITTED

      public static final Isolation READ_COMMITTED
    • READ_UNCOMMITTED

      public static final Isolation READ_UNCOMMITTED
    • REPEATABLE_READ

      public static final Isolation REPEATABLE_READ
    • SERIALIZABLE

      public static final Isolation SERIALIZABLE
  • Method Details

    • values

      public static Isolation[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Isolation valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getTransactionIsolationLevel

      public org.apache.ibatis.session.TransactionIsolationLevel getTransactionIsolationLevel()