Enum Class TccParticipantStatus

java.lang.Object
java.lang.Enum<TccParticipantStatus>
oracle.tmm.tcc.TccParticipantStatus
All Implemented Interfaces:
Serializable, Comparable<TccParticipantStatus>, Constable

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

    • Active

      public static final TccParticipantStatus Active
      TCC Participant Transaction in Active State
    • Confirming

      public static final TccParticipantStatus Confirming
      TCC Participant Transaction in process of confirming the Transaction
    • Confirmed

      public static final TccParticipantStatus Confirmed
      TCC Participant Transaction is confirmed
    • FailedToConfirm

      public static final TccParticipantStatus FailedToConfirm
      TCC Participant Transaction is failed to confirm
    • Cancelling

      public static final TccParticipantStatus Cancelling
      TCC Participant Transaction in process of cancelling the Transaction
    • Cancelled

      public static final TccParticipantStatus Cancelled
      TCC Participant Transaction is cancelled
    • FailedToCancel

      public static final TccParticipantStatus FailedToCancel
      TCC Participant Transaction is failed to cancel
  • Method Details

    • values

      public static TccParticipantStatus[] 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 TccParticipantStatus 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
    • getValue

      public String getValue()