Uses of Class
java.io.ObjectStreamField

Packages that use ObjectStreamField
java.io   
java.lang   
 

Uses of ObjectStreamField in java.io
 

Fields in java.io declared as ObjectStreamField
private  ObjectStreamField[] ObjectStreamClass.fields
           
static ObjectStreamField[] ObjectStreamClass.NO_FIELDS
          Set serialPersistentFields of a Serializable class to this value to denote that the class has no Serializable fields.
private static ObjectStreamField[] ObjectStreamClass.serialPersistentFields
          Class ObjectStreamClass is special cased within the Serialization Stream Protocol.
 

Methods in java.io that return ObjectStreamField
(package private) static ObjectStreamField ObjectStreamField.constructSearchKey(String fieldName, Class fieldType)
           
 ObjectStreamField[] ObjectStreamClass.getFields()
          Return an array of the fields of this serializable class.
(package private)  ObjectStreamField[] ObjectStreamClass.getFieldsNoCopy()
           
 ObjectStreamField ObjectStreamClass.getField(String name)
          Get the field of this class by name.
(package private)  ObjectStreamField ObjectStreamClass.getField(String name, Class fieldType)
          Get the field of this class by name and fieldType.
private  ObjectStreamField ObjectInputStream.GetFieldImpl.checkField(String name, Class type)
           
 

Methods in java.io with parameters of type ObjectStreamField
private  void ObjectOutputStream.outputClassFields(Object o, Class cl, ObjectStreamField[] fields)
           
(package private)  boolean ObjectStreamField.typeEquals(ObjectStreamField other)
          Compare the type of this ObjectStreamField with other.
private  void ObjectInputStream.inputClassFields(Object o, Class cl, ObjectStreamField[] fields)
           
 

Uses of ObjectStreamField in java.lang
 

Fields in java.lang declared as ObjectStreamField
private static ObjectStreamField[] Class.serialPersistentFields
          Class Class is special cased within the Serialization Stream Protocol.
private static ObjectStreamField[] String.serialPersistentFields
          Class String is special cased within the Serialization Stream Protocol.