|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ClassNotFoundException | |
---|---|
java.beans | Contains classes for run-time Java Beans support. |
java.io | Provides for system input and output through data streams, serialization and the file system. |
java.lang | Provides classes that are fundamental to the design of the Java programming language. |
java.security | Provides the classes and interfaces for the security framework. |
Uses of ClassNotFoundException in java.beans |
---|
Methods in java.beans that throw ClassNotFoundException | |
---|---|
static Object |
Beans.instantiate(ClassLoader cls,
String beanName)
Instantiate a JavaBean. |
Uses of ClassNotFoundException in java.io |
---|
Methods in java.io that throw ClassNotFoundException | |
---|---|
void |
ObjectInputStream.defaultReadObject()
Read the non-static and non-transient fields of the current class from this stream. |
void |
Externalizable.readExternal(ObjectInput in)
The object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays. |
ObjectInputStream.GetField |
ObjectInputStream.readFields()
Reads the persistent fields from the stream and makes them available by name. |
Object |
ObjectInput.readObject()
Read and return an object. |
Object |
ObjectInputStream.readObject()
Read an object from the ObjectInputStream. |
Object |
ObjectInputStream.readUnshared()
Reads an "unshared" object from the ObjectInputStream. |
Uses of ClassNotFoundException in java.lang |
---|
Methods in java.lang that throw ClassNotFoundException | |
---|---|
static Class |
Class.forName(String className)
Returns the Class object associated with the class or
interface with the given string name. |
static Class |
Class.forName(String name,
boolean initialize,
ClassLoader loader)
Returns the Class object associated with the class or
interface with the given string name, using the given class loader. |
Class |
ClassLoader.loadClass(String name)
Loads the class with the specified name. |
Uses of ClassNotFoundException in java.security |
---|
Methods in java.security that throw ClassNotFoundException | |
---|---|
Object |
SignedObject.getObject()
Retrieves the encapsulated object. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |