Object/Class

org.scalarelational

TransactionMode

Related Docs: class TransactionMode | package scalarelational

Permalink

object TransactionMode extends Enum[TransactionMode]

Linear Supertypes
Enum[TransactionMode], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransactionMode
  2. Enum
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object None extends TransactionMode with Product with Serializable

    Permalink

    A constant indicating that transactions are not supported.

  5. object ReadCommitted extends TransactionMode with Product with Serializable

    Permalink

    A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur.

    A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur. This level only prohibits a transaction from reading a row with uncommitted changes in it.

  6. object ReadUncommitted extends TransactionMode with Product with Serializable

    Permalink

    A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.

    A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur. This level allows a row changed by one transaction to be read by another transaction before any changes in that row have been committed (a "dirty read"). If any of the changes are rolled back, the second transaction will have retrieved an invalid row.

  7. object RepeatableRead extends TransactionMode with Product with Serializable

    Permalink

    A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur.

    A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur. This level prohibits a transaction from reading a row with uncommitted changes in it, and it also prohibits the situation where one transaction reads a row, a second transaction alters the row, and the first transaction rereads the row, getting different values the second time (a "non-repeatable read").

  8. object Serializable extends TransactionMode with Product with Serializable

    Permalink

    A constant indicating that dirty reads, non-repeatable reads and phantom reads are prevented.

    A constant indicating that dirty reads, non-repeatable reads and phantom reads are prevented. This level includes the prohibitions in TRANSACTION_REPEATABLE_READ and further prohibits the situation where one transaction reads all rows that satisfy a WHERE condition, a second transaction inserts a row that satisfies that WHERE condition, and the first transaction rereads for the same condition, retrieving the additional "phantom" row in the second read.

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def byValue(value: Int): TransactionMode

    Permalink
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. macro def findValues: Seq[TransactionMode]

    Permalink
    Attributes
    protected
    Definition Classes
    Enum
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. def indexOf(member: TransactionMode): Int

    Permalink
    Definition Classes
    Enum
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final lazy val lowerCaseNamesToValuesMap: Map[String, TransactionMode]

    Permalink
    Definition Classes
    Enum
  21. final lazy val namesToValuesMap: Map[String, TransactionMode]

    Permalink
    Definition Classes
    Enum
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. val values: Vector[TransactionMode]

    Permalink
    Definition Classes
    TransactionMode → Enum
  28. final lazy val valuesToIndex: Map[TransactionMode, Int]

    Permalink
    Definition Classes
    Enum
  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def withName(name: String): TransactionMode

    Permalink
    Definition Classes
    Enum
  33. def withNameInsensitive(name: String): TransactionMode

    Permalink
    Definition Classes
    Enum
  34. def withNameInsensitiveOption(name: String): Option[TransactionMode]

    Permalink
    Definition Classes
    Enum
  35. def withNameOption(name: String): Option[TransactionMode]

    Permalink
    Definition Classes
    Enum

Inherited from Enum[TransactionMode]

Inherited from AnyRef

Inherited from Any

Ungrouped