decode method

XdrUint32 decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrUint32 decode(XdrDataInputStream stream) {
  XdrUint32 decodedUint32 = XdrUint32();
  decodedUint32.uint32 = stream.readInt();
  return decodedUint32;
}