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