decode method Null safety
- XdrDataInputStream stream
Implementation
static XdrSCPBallot decode(XdrDataInputStream stream) {
XdrUint32 counter = XdrUint32.decode(stream);
XdrValue value = XdrValue.decode(stream);
return XdrSCPBallot(counter, value);
}