List of utility methods to do ObjectInput Read Long
Long | readLong(ObjectInput in) read Long return (in.readBoolean() ? null : new Long(in.readLong())); |
Long | readLong(ObjectInput in) read Long byte b = in.readByte(); switch (b) { case NULL: return null; case NOTNULL: return in.readLong(); throw new InvalidObjectException("null flag broken:" + b); ... |