decode static method

Implementation

static XdrLedgerHeaderHistoryEntry decode(XdrDataInputStream stream) {
  XdrHash hash = XdrHash.decode(stream);
  XdrLedgerHeader header = XdrLedgerHeader.decode(stream);
  XdrLedgerHeaderHistoryEntryExt ext =
      XdrLedgerHeaderHistoryEntryExt.decode(stream);
  return XdrLedgerHeaderHistoryEntry(hash, header, ext);
}