Class LedgerEntry.LedgerEntryData

java.lang.Object
org.stellar.sdk.xdr.LedgerEntry.LedgerEntryData
Enclosing class:
LedgerEntry

public static class LedgerEntry.LedgerEntryData extends Object
LedgerEntryData's original definition in the XDR file is:
 union switch (LedgerEntryType type)
     {
     case ACCOUNT:
         AccountEntry account;
     case TRUSTLINE:
         TrustLineEntry trustLine;
     case OFFER:
         OfferEntry offer;
     case DATA:
         DataEntry data;
     case CLAIMABLE_BALANCE:
         ClaimableBalanceEntry claimableBalance;
     case LIQUIDITY_POOL:
         LiquidityPoolEntry liquidityPool;
     case CONTRACT_DATA:
         ContractDataEntry contractData;
     case CONTRACT_CODE:
         ContractCodeEntry contractCode;
     case CONFIG_SETTING:
         ConfigSettingEntry configSetting;
     case TTL:
         TTLEntry ttl;
     }