All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.io.ObjectOutputStream.PutField

java.lang.Object
    |
    +----java.io.ObjectOutputStream.PutField

public class ObjectOutputStream.PutField
extends Object
Provide access to the persistent fields read from the input stream.


Method Index

 o put(String, boolean)
Put the value of the named boolean field into the persistent field.
 o put(String, byte)
Put the value of the named byte field into the persistent fields.
 o put(String, char)
Put the value of the named char field into the persistent fields.
 o put(String, double)
Put the value of the named double field into the persistent field.
 o put(String, float)
Put the value of the named float field into the persistent fields.
 o put(String, int)
Put the value of the named int field into the persistent fields.
 o put(String, long)
Put the value of the named long field into the persistent fields.
 o put(String, Object)
Put the value of the named Object field into the persistent field.
 o put(String, short)
Put the value of the named short field into the persistent fields.

Methods

 o put
public void put(String name,
                boolean value) throws IllegalArgumentException
Put the value of the named boolean field into the persistent field.

 o put
public void put(String name,
                char value)
Put the value of the named char field into the persistent fields.

 o put
public void put(String name,
                byte value)
Put the value of the named byte field into the persistent fields.

 o put
public void put(String name,
                short value)
Put the value of the named short field into the persistent fields.

 o put
public void put(String name,
                int value)
Put the value of the named int field into the persistent fields.

 o put
public void put(String name,
                long value)
Put the value of the named long field into the persistent fields.

 o put
public void put(String name,
                float value)
Put the value of the named float field into the persistent fields.

 o put
public void put(String name,
                double value)
Put the value of the named double field into the persistent field.

 o put
public void put(String name,
                Object value)
Put the value of the named Object field into the persistent field.


All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature