Located in compilation unit of javax.
Access | Constructor and Description |
---|---|
pack-priv |
Modifier and Type | Method and Description |
---|---|
protected Class | resolveClass(ObjectStreamClass
an instance of class v)ObjectStreamClass Overrides java. Load the local class equivalent of the specified stream class description. |
extObjectInputStream | back to summary |
---|---|
pack-priv extObjectInputStream(InputStream in) throws IOException, StreamCorruptedException |
resolveClass | back to summary |
---|---|
protected Class Overrides java. Doc from java. Load the local class equivalent of the specified stream class description. Subclasses may implement this method to allow classes to be fetched from an alternate source. The corresponding method in The default implementation of this method in
Class.forName(desc.getName(), false, loader) loader is the first class loader on the current
thread's stack (starting from the currently executing method) that is
neither the platform
class loader nor its ancestor; otherwise, loader is the
platform class loader. If this call results in a
ClassNotFoundException and the name of the passed
ObjectStreamClass instance is the Java language keyword
for a primitive type or void, then the Class object
representing that primitive type or void will be returned
(e.g., an ObjectStreamClass with the name
"int" will be resolved to Integer.TYPE ).
Otherwise, the ClassNotFoundException will be thrown to
the caller of this method.
|