decode method
- XdrDataInputStream stream
Implementation
static XdrUint64 decode(XdrDataInputStream stream) {
XdrUint64 decodedUint64 = XdrUint64();
decodedUint64.uint64 = stream.readLong();
return decodedUint64;
}
static XdrUint64 decode(XdrDataInputStream stream) {
XdrUint64 decodedUint64 = XdrUint64();
decodedUint64.uint64 = stream.readLong();
return decodedUint64;
}