Class DataEntry

java.lang.Object
org.stellar.sdk.xdr.DataEntry
All Implemented Interfaces:
XdrElement

public class DataEntry extends Object implements XdrElement
DataEntry's original definition in the XDR file is:
 struct DataEntry
 {
     AccountID accountID; // account this data belongs to
     string64 dataName;
     DataValue dataValue;

     // reserved for future use
     union switch (int v)
     {
     case 0:
         void;
     }
     ext;
 };
 
  • Constructor Details

    • DataEntry

      public DataEntry()
    • DataEntry

      public DataEntry(AccountID accountID, String64 dataName, DataValue dataValue, DataEntry.DataEntryExt ext)
      Creates a new DataEntry instance.
      Parameters:
      accountID - the accountID field value
      dataName - the dataName field value
      dataValue - the dataValue field value
      ext - the ext field value
  • Method Details