Enum Class TransactionEventStage

java.lang.Object
java.lang.Enum<TransactionEventStage>
org.stellar.sdk.xdr.TransactionEventStage
All Implemented Interfaces:
Serializable, Comparable<TransactionEventStage>, Constable, XdrElement

public enum TransactionEventStage extends Enum<TransactionEventStage> implements XdrElement
TransactionEventStage's original definition in the XDR file is:
 enum TransactionEventStage {
     // The event has happened before any one of the transactions has its
     // operations applied.
     TRANSACTION_EVENT_STAGE_BEFORE_ALL_TXS = 0,
     // The event has happened immediately after operations of the transaction
     // have been applied.
     TRANSACTION_EVENT_STAGE_AFTER_TX = 1,
     // The event has happened after every transaction had its operations
     // applied.
     TRANSACTION_EVENT_STAGE_AFTER_ALL_TXS = 2
 };