Lines Matching defs:ObjectInputStream

47  * An ObjectInputStream deserializes primitive data and objects previously
50 * <p>ObjectOutputStream and ObjectInputStream can provide an application with
52 * and FileInputStream respectively. ObjectInputStream is used to recover
57 * <p>ObjectInputStream ensures that the types of all objects in the graph
92 * ObjectInputStream ois = new ObjectInputStream(fis);
117 * private void readObject(java.io.ObjectInputStream stream)
127 * restored by reading data from the ObjectInputStream for the individual
173 * the ObjectInputStream and abort the reading process.
186 * deserialize an enum constant, ObjectInputStream reads the constant name from
206 public class ObjectInputStream
272 * Creates an ObjectInputStream that reads from the specified InputStream.
280 * the ObjectInputStream.readFields or ObjectInputStream.readUnshared
289 * @see ObjectInputStream#ObjectInputStream()
290 * @see ObjectInputStream#readFields()
293 public ObjectInputStream(InputStream in) throws IOException {
305 * ObjectInputStream to not have to allocate private data just used by this
306 * implementation of ObjectInputStream.
319 protected ObjectInputStream() throws IOException, SecurityException {
331 * Read an object from the ObjectInputStream. The class of the object, the
401 * @see #ObjectInputStream()
412 * Reads an "unshared" object from the ObjectInputStream. This method is
436 * invocation of readObject or readUnshared on the ObjectInputStream,
439 * <p>ObjectInputStream subclasses which override this method can only be
528 public ObjectInputStream.GetField readFields()
592 * <code>ObjectInputStream</code> returns the result of calling
646 * <code>ObjectInputStream</code> that overrides this method, the
652 * <code>ObjectInputStream</code> returns the result of calling
719 * This method will allow trusted subclasses of ObjectInputStream to
809 * called when the ObjectInputStream expects a class descriptor as the next
810 * item in the serialization stream. Subclasses of ObjectInputStream may
1234 if (cl == ObjectInputStream.class) {
1264 cl != ObjectInputStream.class;
1524 // Return true if this class is a custom subclass of ObjectInputStream
1526 != ObjectInputStream.class.getClassLoader();