decode static method

XdrPrice decode(
  1. XdrDataInputStream stream
)

Implementation

static XdrPrice decode(XdrDataInputStream stream) {
  XdrInt32 n = XdrInt32.decode(stream);
  XdrInt32 d = XdrInt32.decode(stream);
  return XdrPrice(n, d);
}