java.lang |
|
Java Source File Name | Type | Comment |
AbstractMethodError.java | Class | This error is thrown when the VM notices that an attempt is being made to
invoke an abstract method. |
AbstractStringBuilder.java | Class | A modifiable
CharSequence sequence of characters for use in creating
and modifying Strings. |
Appendable.java | Interface | Appendable is an object used to append character or character sequence. |
ArithmeticException.java | Class | This runtime exception is thrown when the an invalid arithmetic operation is
attempted. |
ArrayIndexOutOfBoundsException.java | Class | This runtime exception is thrown when the an array is indexed with a value
less than zero, or greater than or equal to the size of the array. |
ArrayStoreException.java | Class | This runtime exception is thrown when a program attempts to store into an
array an element of a a type which the array can not hold.. |
AssertionError.java | Class | Indicates that an assertion has failed. |
Boolean.java | Class | Boolean is the wrapper for the primitive type boolean . |
Byte.java | Class | Byte is the wrapper for the primitive type byte . |
Character.java | Class |
Character is the wrapper for the primitive type char . |
CharSequence.java | Interface | The CharSequence interface represents an ordered set of characters and the
functions to probe them. |
Class.java | Class | author: Evgueni Brevnov, Serguei S. |
Class1_5Test.java | Annotation | |
Class5Test.java | Class | Test of the
java.lang.reflect.AnnotatedElement AnnotatedElement
functionality in
java.lang.Class java.lang.Class class.
author: Alexey V. |
ClassAnnotationsTest.java | Annotation | |
ClassCastException.java | Class | This runtime exception is thrown when a program attempts to cast a an object
to a type which it is not compatible with. |
ClassCircularityError.java | Class | This error is thrown when the VM notices that an attempt is made to load a
class which would directly or indirectly inherit from one of its subclasses. |
ClassFormatError.java | Class | This error is thrown by the class loader when it discovers that a class that
it is loading does not have the correct shape. |
ClassGenericsTest.java | Annotation | ###############################################################################
###############################################################################
TODO: 1. |
ClassGenericsTest2.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
ClassGenericsTest3.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
ClassGenericsTest4.java | Class | |
ClassGenericsTest5.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
ClassHierarchyTest.java | Annotation | |
ClassLoader.java | Class | |
ClassLoaderTest.java | Class | |
ClassLoaderTestLoad.java | Class | |
ClassNotFoundException.java | Class | This exception is thrown when a classloader is unable to find a class. |
ClassTestDesiredAssertionStatus.java | Class | |
ClassTestForName.java | Class | |
ClassTestGetAnnotation.java | Class | |
ClassTestGetClasses.java | Class | |
ClassTestGetClassLoader.java | Class | |
ClassTestGetComponentType.java | Class | |
ClassTestGetConstructor.java | Class | |
ClassTestGetConstructors.java | Class | |
ClassTestGetDeclaredClasses.java | Class | |
ClassTestGetDeclaredConstructor.java | Class | |
ClassTestGetDeclaredConstructors.java | Class | |
ClassTestGetDeclaredField.java | Class | |
ClassTestGetDeclaredFields.java | Class | |
ClassTestGetDeclaredMethod.java | Class | |
ClassTestGetDeclaredMethods.java | Class | |
ClassTestGetDeclaresClasses.java | Class | |
ClassTestGetDeclaringClass.java | Class | |
ClassTestGetField.java | Class | |
ClassTestGetFields.java | Class | |
ClassTestGetInterfaces.java | Class | |
ClassTestGetMethod.java | Class | |
ClassTestGetMethods.java | Class | |
ClassTestGetModifiers.java | Class | |
ClassTestGetName.java | Class | |
ClassTestGetPackage.java | Class | |
ClassTestGetProtectionDomain.java | Class | |
ClassTestGetResource.java | Class | |
ClassTestGetResourceAsStream.java | Class | |
ClassTestGetSigners.java | Class | |
ClassTestGetSuperclass.java | Class | |
ClassTestIsArray.java | Class | |
ClassTestIsAssignableFrom.java | Class | |
ClassTestIsInstance.java | Class | |
ClassTestIsInterface.java | Class | |
ClassTestIsPrimitive.java | Class | |
ClassTestNewInstance.java | Class | |
ClassTestToString.java | Class | |
Cloneable.java | Interface | This (empty) interface should be implemented by all classes which wish to
support cloning. |
CloneNotSupportedException.java | Class | This exception is thrown when a program attempts to clone an object which
does not support the Cloneable interface. |
Comparable.java | Interface | This interface should be implemented by all classes which wish to define a
natural ordering of their instances. |
Compiler.java | Class | |
Deprecated.java | Annotation |
An annotation for marking an element as deprecated. |
Double.java | Class |
Double is the wrapper for the primitive type double . |
EMThreadSupport.java | Class | author: Mikhail Y. |
Enum.java | Class | The superclass of all enumerated types. |
EnumConstantNotPresentException.java | Class |
Indicates that an enum constant does not exist for a
particular name. |
Error.java | Class | This class is the superclass of all classes which represent unrecoverable
errors. |
Exception.java | Class | This class is the superclass of all classes which represent recoverable
exceptions. |
ExceptionInInitializerError.java | Class | This error is thrown when an exception occurs during class initialization. |
FinalizerThread.java | Class | Dedicated finalizer thread. |
Float.java | Class |
Float is the wrapper for the primitive type float . |
IllegalAccessError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
access a field which is not accessable from where it is referenced. |
IllegalAccessException.java | Class | This exception is thrown when a program attempts to access a field or method
which is not accessible from the location where the reference is made. |
IllegalArgumentException.java | Class | This runtime exception is thrown when a method is invoked with an argument
which it can not reasonably deal with. |
IllegalMonitorStateException.java | Class | This runtime exception is thrown when a monitor operation is attempted when
the monitor is not in the correct state, for example when a thread attempts
to exit a monitor which it did not own. |
IllegalStateException.java | Class | This runtime exception is thrown when an action is attempted at a time when
the virtual machine is not in the correct state. |
IllegalThreadStateException.java | Class | This runtime exception is thrown when an operation is attempted which is not
possible given the state that the executing thread is in. |
IncompatibleClassChangeError.java | Class | This class is the superclass of all classes which represent errors which
occur when inconsistant class files are loaded into the same running image. |
IndexOutOfBoundsException.java | Class | This runtime exception is thrown when a program attempts to access a value in
an indexable collection using a value which is outside the possible range of
indices. |
InheritableThreadLocal.java | Class | An InheritableThreadLocal is very similar to a ThreadLocal, with the added
functionality that a child Thread inherits all InheritableThreadLocal from
its parent Thread upon Thread creation time. |
InheritableThreadLocalSupport.java | Class | |
InheritableThreadLocalTest.java | Class | |
InstantiationError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
create a new instance of a class which has no visible constructors from the
location where new is invoked. |
InstantiationException.java | Class | This exception is thrown when a program attempts to access a constructor
which is not accessible from the location where the reference is made. |
Integer.java | Class |
Integer is the wrapper for the primitive type int .
As with the specification, this implementation relied on code laid out in Henry S. |
InternalError.java | Class | This error is thrown when the VM notices that it has gotten into a state
which it does not understand. |
InterruptedException.java | Class | This exception is thrown when a waiting thread is activated before the
condition it was waiting on has been satisfied. |
Iterable.java | Interface | |
LinkageError.java | Class | This class is the superclass of all classes which represent errors that occur
when loading and linking class files. |
Long.java | Class |
Long is the wrapper for the primitive type long .
As with the specification, this implementation relied on code laid out in Henry S. |
Math.java | Class | Class math provides various floating point support routines and some standard
constants. |
NegativeArraySizeException.java | Class | This runtime exception is thrown when an attempt is made to create an array
whose size would be less than zero. |
NoClassDefFoundError.java | Class | This error is thrown when the VM is unable to locate a class which it has
been asked to load. |
NoSuchFieldError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
reference a field of a class which does not exist in that class. |
NoSuchFieldException.java | Class | |
NoSuchMethodError.java | Class | This error is thrown when the VM notices that a an attempt is being made to
reference a method of a class which does not exist in that class. |
NoSuchMethodException.java | Class | This exception is thrown when a program attempts to access a method which
does not exist in a class. |
NullPointerException.java | Class | This runtime exception is thrown when an attempt is made to access a field or
method of an instance or an element of an array when there is no instance or
array to use (i.e. |
Number.java | Class | Number is the abstract superclass of the classes which represent numeric base
types (i.e. |
NumberFormatException.java | Class | This runtime exception is thrown when a "string to number" conversion routine
is passed an invalid value. |
Object.java | Class | |
ObjectTest.java | Class | Unit test for java.lang.Object class. |
OutOfMemoryError.java | Class | This error is thrown when a request is made for more memory either as a
result of the running program, or because of the internal behavior of the
virtual machine which can not be satisfied using the available platform
resources. |
Override.java | Annotation | An annotation to indicate that a method is intended to override a superclass
method. |
Package.java | Class | |
Package5Test.java | Class | author: Alexey V. |
PackageAccessible.java | Class | |
PackageTest.java | Class | |
PrivateConstructor.java | Class | |
Process.java | Class | Instances of class Process provide control of and access to platform
processes. |
ProcessBuilder.java | Class |
A builder for creating OS-specific processes. |
ProtectedConstructor.java | Class | |
Readable.java | Interface | Readable marks that the implementing class provides character sequence. |
Runnable.java | Interface | The runnable interface must be implemented by all classes which want to be
run as threads. |
Runtime.java | Class | |
RuntimeAdditionalSupport1.java | Class | |
RuntimeAdditionalSupport2.java | Class | |
RuntimeAdditionalTest0.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest1.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest10.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest11.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest12.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest13.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest14.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest15.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest16.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest17.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest18.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest19.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest2.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest20.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest21.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest22.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest23.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest24.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest25.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest26.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest27.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest28.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest29.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest3.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest30.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest31.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest32.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest33.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest34.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest35.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest36.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest37.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest38.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest39.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest4.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest40.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest41.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest42.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest43.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest5.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest6.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest7.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest8.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeAdditionalTest9.java | Class | ###############################################################################
###############################################################################
TODO: 1. |
RuntimeException.java | Class | This class is the superclass of all classes which represent exceptional
conditions which occur as a result of the running of the virtual machine. |
RuntimePermission.java | Class | RuntimePermission objects represent access to runtime support. |
RuntimeTest.java | Class | ###############################################################################
###############################################################################
REMINDER("XXX") LIST:
1. |
RuntimeTest2.java | Class | This RuntimeTest class is used to test the Core API Runtime class
Created on January 5, 2005
###############################################################################
###############################################################################
REMINDER("XXX") LIST:
1. |
SecurityException.java | Class | This runtime exception is thrown when a security manager check fails. |
SecurityManager.java | Class | SecurityManager is the abstract superclass of the classes which can provide
security verification for a running program. |
SecurityManagerRTest.java | Class | |
Short.java | Class |
Short is the wrapper for the primitive type short . |
StackOverflowError.java | Class | This error is thrown when the depth of the callstack of the running program
excedes some platform or virtual machine specific limit. |
StackTraceElement.java | Class | |
StackTraceElementTest.java | Class | |
StrictMath.java | Class | Class StrictMath provides various numeric operations using the standards set
by the known "Freely Distributable Math Library" (fdlibm). |
String.java | Class |
An immutable sequence of characters/code units (char s). |
StringBuffer.java | Class | StringBuffer is a variable size contiguous indexable array of characters. |
StringBuilder.java | Class |
A modifiable
CharSequence sequence of characters for use in creating
and modifying Strings. |
StringIndexOutOfBoundsException.java | Class | This runtime exception is thrown when the a String is indexed with a value
less than zero, or greater than or equal to the size of the array. |
SuppressWarnings.java | Annotation | An annotation that indicates a compiler should suppress any warnings of the
type specified in the
SuppressWarnings.value() . |
System.java | Class | author: Roman S. |
SystemExtensionTest.java | Class | |
SystemTest.java | Class | |
Thread.java | Class | |
ThreadDeath.java | Class | ThreadDeath is thrown when a thread stops executing. |
ThreadGroup.java | Class | |
ThreadGroupTest.java | Class | |
ThreadLocal.java | Class | A ThreadLocal is a variable that has a per-thread value. |
ThreadRTest.java | Class | |
ThreadTest.java | Class | This class provides an implementation of J2SE v. |
ThreadWeakRef.java | Class | |
Throwable.java | Class | |
ThrowableRTest.java | Class | |
ThrowableTest.java | Class | |
TypeNotPresentException.java | Class |
Indicates that a class, interface, enum or annotation type cannot be found. |
UnknownError.java | Class | This error is thrown when the virtual machine must throw an error which does
not match any known exceptional condition. |
UnsatisfiedLinkError.java | Class | This error is thrown when an attempt is made to invoke a native for which an
implementation could not be found. |
UnsupportedClassVersionError.java | Class | This error is thrown when an attempt is made to load a class with a format
version that is not supported by the VM. |
UnsupportedOperationException.java | Class | This runtime exception is thrown when an unsupported operation is attempted. |
VerifyError.java | Class | This error is thrown when the VM notices that an attempt is made to load a
class which does not pass the class verification phase. |
VirtualMachineError.java | Class | This class is the superclass of all classes which represent errors that occur
during the operation of the virtual machine. |
VMClassRegistry.java | Class | Provides the class information methods required for the
java.lang.Class Class implementation, and class loading/resolution
methods for the
java.lang.ClassLoader ClassLoader implementation.
An implementation of the java.lang.Class class should not relay
on default object initialization by the VM. |
VMExecutionEngine.java | Class | Provides the methods to interact with VM Execution Engine that are used by
different classes from the java.lang package, such as System,
Runtime. |
VMMemoryManager.java | Class | Provides the methods to interact with VM Memory Manager that are used by
different classes from the java.lang package, such as Object,
System, Runtime.
This class must be implemented according to the common policy for porting
interfaces - see the porting interface overview for more detailes.
author: Evgueni Brevnov, Roman S. |
VMStart.java | Class | This class does the following:
starts Finalizer and Execution Manager helper threads. |
VMThreadManager.java | Class | Provides the methods to interact with VM Thread Manager that are used by
java.lang.Thread Thread class and
java.lang.Object Object synchronization implementation. |
Void.java | Class | |