Lines Matching defs:writeObject

54  * <p>The method writeObject is used to write an object to the stream.  Any
55 * object, including Strings and arrays, is written with writeObject. Multiple
80 * oos.writeObject("Today");
81 * oos.writeObject(new Date());
93 * private void writeObject(java.io.ObjectOutputStream stream)
99 * <p>The writeObject method is responsible for writing the state of the object
104 * writeObject method or by using the methods for primitive data types
116 * <p>Serialization of an object can be prevented by implementing writeObject
137 * writeObject and writeReplace methods defined by enum types are ignored
149 * block-data mode. Calls to the ObjectOutputStream methods writeObject,
190 /** if true, invoke writeObjectOverride() instead of writeObject() */
195 // values below valid only during upcalls to writeObject()/writeExternal()
197 * Context during upcalls to class-defined writeObject methods; holds
199 * Null when not during writeObject upcall.
325 * writeObject and the readObject methods. Objects referenced by this
341 public final void writeObject(Object obj) throws IOException {
357 * Method used by subclasses to override the default writeObject method.
367 * @see #writeObject(Object)
375 * identical to writeObject, except that it always writes the given object
384 * <li>If writeObject is used to write an object that has been previously
425 * this stream. This may only be called from the writeObject method of the
434 throw new NotActiveException("not in call to writeObject");
456 throw new NotActiveException("not in call to writeObject");
470 * @throws NotActiveException Called when a classes writeObject method was
558 * <p>The ObjectOutputStream.writeObject method takes a parameter of type
857 * primitive data or as an Object. A String instance written by writeObject
858 * is written into the stream as a String initially. Future writeObject()
1100 * Underlying writeObject/writeUnshared implementation.
1487 "custom writeObject data (class \"" +
1680 out.writeObject(objVals[i]);