Class UInt256Parts

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

public class UInt256Parts extends Object implements XdrElement
UInt256Parts's original definition in the XDR file is:
 struct UInt256Parts {
     uint64 hi_hi;
     uint64 hi_lo;
     uint64 lo_hi;
     uint64 lo_lo;
 };
 
  • Constructor Details

    • UInt256Parts

      public UInt256Parts()
    • UInt256Parts

      public UInt256Parts(Uint64 hi_hi, Uint64 hi_lo, Uint64 lo_hi, Uint64 lo_lo)
      Creates a new UInt256Parts instance.
      Parameters:
      hi_hi - the hi_hi field value
      hi_lo - the hi_lo field value
      lo_hi - the lo_hi field value
      lo_lo - the lo_lo field value
  • Method Details