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.
put(String, boolean)
- Put the value of the named boolean field into the persistent field.
put(String, byte)
- Put the value of the named byte field into the persistent fields.
put(String, char)
- Put the value of the named char field into the persistent fields.
put(String, double)
- Put the value of the named double field into the persistent field.
put(String, float)
- Put the value of the named float field into the persistent fields.
put(String, int)
- Put the value of the named int field into the persistent fields.
put(String, long)
- Put the value of the named long field into the persistent fields.
put(String, Object)
- Put the value of the named Object field into the persistent field.
put(String, short)
- Put the value of the named short field into the persistent fields.
put
public void put(String name,
boolean value) throws IllegalArgumentException
- Put the value of the named boolean field into the persistent field.
put
public void put(String name,
char value)
- Put the value of the named char field into the persistent fields.
put
public void put(String name,
byte value)
- Put the value of the named byte field into the persistent fields.
put
public void put(String name,
short value)
- Put the value of the named short field into the persistent fields.
put
public void put(String name,
int value)
- Put the value of the named int field into the persistent fields.
put
public void put(String name,
long value)
- Put the value of the named long field into the persistent fields.
put
public void put(String name,
float value)
- Put the value of the named float field into the persistent fields.
put
public void put(String name,
double value)
- Put the value of the named double field into the persistent field.
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