This class is serialization’s descriptor for classes. It contains the name and serialVersionUID of the class. The ObjectStreamClass for a specific class loaded in this Java VM can be found/created using the lookup method. It extends class Object and implement serialisable.
Fields: static ObjectStreamField[] NO_FIELDS– This is the serialPersistentFields value indicating no serializable fields.
Methods:
Class forClass(): This method return the class in the local VM that this version is mapped to. Null is returned if there is no corresponding local class.
Syntax: public Class forClass()
Returns: the Class instance that this descriptor represents
Exception: NA
static ObjectStreamClass lookup(Class class): Find the descriptor for a class that can be serialized. Creates an ObjectStreamClass instance if one does not exist yet for class. Null is returned if the specified class does not implement java.io.Serializable or java.io.Externalizable.
Syntax: public static ObjectStreamClass lookup(Class cl)
Return: the class descriptor for the specified class
Exception: NA
static ObjectStreamClass lookupAny(Class class): Returns the descriptor for any class, regardless of whether it implements Serializable.
Syntax: public static ObjectStreamClass lookupAny(Class class)
Return: the class descriptor for the specified class
Exception: NA
Java
import java.io.ObjectStreamClass;
import java.util.ArrayList;
public class ObjectStreamDemo
{
public static void main(String arg[])
{
ObjectStreamClass geeks_stream
= ObjectStreamClass.lookup(Number. class );
ObjectStreamClass quiz_stream
= ObjectStreamClass.lookupAny(ArrayList. class );
System.out.println(geeks_stream.forClass());
System.out.println(quiz_stream.forClass());
}
}
|
Output:
class java.lang.Number
class java.util.ArrayList
ObjectStreamField getField(String name): Get the field of this class by name.
Syntax: public ObjectStreamField getField(String name)
Return: The ObjectStreamField object of the named
field or null if there is no such named field.
Exception: NA
ObjectStreamField[] getFields(): Return an array of the fields of this serializable class.
Syntax: public ObjectStreamField[] getFields()
Returns: an array containing an element for each
persistent field of this class. Returns an array of length zero if
there are no fields.
Exception: NA
String getName(): Returns the name of the class described by this descriptor. This method returns the name of the class in the format that is used by the Class.getName() method.
Syntax: public String getName()
Return: a string representing the name of the class
Exception: NA
long getSerialVersionUID(): Return the serialVersionUID for this class. The serialVersionUID defines a set of classes all with the same name that have evolved from a common root class and agree to be serialized and deserialized using a common format. NonSerializable classes have a serialVersionUID of 0L.
Syntax: public long getSerialVersionUID()
Returns: the SUID of the class described by this descriptor
Exception: NA
String toString(): Return a string describing this ObjectStreamClass.
Syntax: public String toString()
Returns: a string representation of the object.
Exception: NA
Java
import java.io.ObjectStreamClass;
import java.util.ArrayList;
public class ObjectStreamDemo
{
public static void main(String arg[])
{
ObjectStreamClass geeks_stream
= ObjectStreamClass.lookup(Number. class );
System.out.println(geeks_stream.getField("quiz_stream"));
System.out.println(geeks_stream.getFields());
System.out.println(" class name: " + geeks_stream.getClass());
System.out.println(geeks_stream.getSerialVersionUID());
System.out.println(geeks_stream.toString());
}
}
|
Output:
null
[Ljava.io.ObjectStreamField;@45ee12a7
class name: class java.io.ObjectStreamClass
-8742448824652078965
java.lang.Number: static final long serialVersionUID = -8742448824652078965L;
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
06 Jul, 2023
Like Article
Save Article