Enum Class TransactionStatus

java.lang.Object
java.lang.Enum<TransactionStatus>
org.iplass.mtp.transaction.TransactionStatus
All Implemented Interfaces:
Serializable, Comparable<TransactionStatus>, Constable

public enum TransactionStatus extends Enum<TransactionStatus>
  • Enum Constant Details

    • ACTIVE

      public static final TransactionStatus ACTIVE
      現在のトランザクションが有効であることを示します
    • NONE

      public static final TransactionStatus NONE
      現在のトランザクションが無効であることを示します
    • COMMITTED

      public static final TransactionStatus COMMITTED
      現在のトランザクションはcommitされたことを示します
    • ROLLEDBACK

      public static final TransactionStatus ROLLEDBACK
      現在のトランザクションはrollbackされたことを示します
    • SUSPENDED

      public static final TransactionStatus SUSPENDED
      現在トランザクションが中断された状態であることを示します
  • Method Details

    • values

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

      public static TransactionStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null