m.writeBoolean(randBool().booleanValue());
m.writeByte(randByte().byteValue());
m.writeBytes(randByteArray(500));
m.writeChar(randChar().charValue());
m.writeDouble(randDouble().doubleValue());
m.writeFloat(randFloat().floatValue());
m.writeInt(randInt().intValue());
m.writeLong(randLong().longValue());
m.writeShort(randShort().shortValue());
m.writeString(randString(1000));
return m;