java.lang |
|
Java Source File Name | Type | Comment |
AbstractMethodError.java | Class | Thrown by the virtual machine when an abstract method is called. |
AbstractStringBuilder.java | Class | A modifiable
CharSequence sequence of characters for use in creating
and modifying Strings. |
Appendable.java | Interface | Declares methods to append characters or character sequences. |
ArithmeticException.java | Class | Thrown when the an invalid arithmetic operation is attempted. |
ArrayIndexOutOfBoundsException.java | Class | 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 | Thrown when a program attempts to store an element of an incompatible type in
an array. |
AssertionError.java | Class | Thrown when an assertion has failed. |
Boolean.java | Class | The wrapper for the primitive type
boolean . |
Byte.java | Class | The wrapper for the primitive type
byte . |
Character.java | Class | The wrapper for the primitive type
char . |
CharSequence.java | Interface | This interface represents an ordered set of characters and defines the
methods to probe them. |
Class.java | Class | Runtime representation of a 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 | Thrown when a program attempts to cast a an object to a type with which it is
not compatible. |
ClassCircularityError.java | Class | Thrown when the virtual machine notices that an attempt is made to load a
class which would directly or indirectly inherit from one of its subclasses. |
ClassFormatError.java | Class | Thrown by a class loader when a class file has an illegal format or if the
data that it contains can not be interpreted as a class. |
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 | Thrown when a class loader 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 | |
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 must be implemented by all classes that wish to
support cloning. |
CloneNotSupportedException.java | Class | 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 that wish to define a
natural order of their instances. |
Compiler.java | Class | |
Deprecated.java | Annotation | Annotation type used to mark program elements that should no longer be used
by programmers. |
Double.java | Class | 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 | Thrown if an
enum constant does not exist for a particular name. |
Error.java | Class | Error is the superclass of all classes that represent unrecoverable
errors. |
Exception.java | Class | Exception is the superclass of all classes that represent recoverable
exceptions. |
ExceptionInInitializerError.java | Class | Thrown when an exception occurs during class initialization. |
FinalizerThread.java | Class | Dedicated finalizer thread. |
Float.java | Class | The wrapper for the primitive type
float . |
IllegalAccessError.java | Class | Thrown when the virtual machine notices that a program tries access a field
which is not accessible from where it is referenced. |
IllegalAccessException.java | Class | 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 | Thrown when a method is invoked with an argument which it can not reasonably
deal with. |
IllegalMonitorStateException.java | Class | 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
does not own. |
IllegalStateException.java | Class | Thrown when an action is attempted at a time when the virtual machine is not
in the correct state. |
IllegalThreadStateException.java | Class | Thrown when an operation is attempted which is not possible given the state
that the executing thread is in. |
IncompatibleClassChangeError.java | Class | IncompatibleClassChangeError is the superclass of all classes which
represent errors that occur when inconsistent class files are loaded into
the same running image. |
IndexOutOfBoundsException.java | Class | Thrown when a program attempts to access a value in an indexable collection
using a value which is outside of the range of valid indices. |
InheritableThreadLocal.java | Class | A thread-local variable whose value is passed from parent to child thread. |
InheritableThreadLocalSupport.java | Class | |
InheritableThreadLocalTest.java | Class | |
InstantiationError.java | Class | Thrown when the virtual machine notices that a program tries to create a new
instance of a class which has no visible constructors from the location where
new is invoked. |
InstantiationException.java | Class | Thrown when a program attempts to access a constructor which is not
accessible from the location where the reference is made. |
Integer.java | Class | The wrapper for the primitive type
int .
As with the specification, this implementation relies on code laid out in Henry S. |
InternalError.java | Class | Thrown when the virtual machine notices that it has gotten into an undefined
state. |
InterruptedException.java | Class | Thrown when a waiting thread is activated before the condition it was waiting
for has been satisfied. |
Iterable.java | Interface | Objects of classes that implement this interface can be used within a
foreach statement. |
LinkageError.java | Class | LinkageError is the superclass of all error classes that occur when
loading and linking class files. |
Long.java | Class | The wrapper for the primitive type
long .
As with the specification, this implementation relies on code laid out in Henry S. |
Math.java | Class | Class Math provides basic math constants and operations such as trigonometric
functions, hyperbolic functions, exponential, logarithms, etc. |
NegativeArraySizeException.java | Class | Thrown when an attempt is made to create an array with a size of less than
zero. |
NoClassDefFoundError.java | Class | Thrown when the virtual machine is unable to locate a class which it has been
asked to load. |
NoSuchFieldError.java | Class | Thrown when the virtual machine notices that a program tries to reference,
on a class or object, a field that does not exist. |
NoSuchFieldException.java | Class | Thrown when the virtual machine notices that a program tries to reference,
on a class or object, a field that does not exist. |
NoSuchMethodError.java | Class | Thrown when the virtual machine notices that a program tries to reference,
on a class or object, a method that does not exist. |
NoSuchMethodException.java | Class | Thrown when the virtual machine notices that a program tries to reference,
on a class or object, a method that does not exist. |
NullPointerException.java | Class | Thrown when a program tries to access a field or method of an object or an
element of an array when there is no instance or array to use, that is if the
object or array points to
null . |
Number.java | Class | The abstract superclass of the classes which represent numeric base types
(that is
Byte ,
Short ,
Integer ,
Long ,
Float , and
Double . |
NumberFormatException.java | Class | Thrown when an invalid value is passed to a string-to-number conversion
method. |
Object.java | Class | |
ObjectTest.java | Class | Unit test for java.lang.Object class. |
OutOfMemoryError.java | Class | Thrown when a request for memory is made that can not be satisfied using the
available platform resources. |
Override.java | Annotation | Annotation type used to mark methods that override a method declaration in a
superclass. |
Package.java | Class | |
Package5Test.java | Class | author: Alexey V. |
PackageAccessible.java | Class | |
PackageTest.java | Class | |
PrivateConstructor.java | Class | |
Process.java | Class | Represents an external process. |
ProcessBuilder.java | Class | Creates operating system processes. |
ProtectedConstructor.java | Class | |
Readable.java | Interface | Represents a sequence of characters that can be incrementally read (copied)
into a
CharBuffer . |
Runnable.java | Interface | Represents a command that can be executed. |
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 | RuntimeException is the superclass of all classes that represent
exceptional conditions which occur as a result of executing an application in
the virtual machine. |
RuntimePermission.java | Class | Represents the permission to execute a runtime-related function. |
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 | Thrown when a security manager check fails. |
SecurityManager.java | Class | Provides security verification facilities for applications. |
SecurityManagerRTest.java | Class | |
Short.java | Class | The wrapper for the primitive type
short . |
StackOverflowError.java | Class | 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 basic math constants and operations such as
trigonometric functions, hyperbolic functions, exponential, logarithms, etc.
In contrast to class
Math , the methods in this class return exactly
the same results on all platforms. |
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 | 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 | Annotation type used to indicate that the compiler should not issue the
specified warnings for the marked program element. |
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 variable for which each thread has its own 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 | Thrown when a program tries to access a class, interface, enum or annotation
type through a string that contains the type's name and the type cannot be
found. |
UnknownError.java | Class | Thrown when the virtual machine must throw an error which does not match any
known exceptional condition. |
UnsatisfiedLinkError.java | Class | Thrown when an attempt is made to invoke a native for which an implementation
could not be found. |
UnsupportedClassVersionError.java | Class | Thrown when an attempt is made to load a class with a format version that is
not supported by the virtual machine. |
UnsupportedOperationException.java | Class | Thrown when an unsupported operation is attempted. |
VerifyError.java | Class | Thrown when the virtual machine notices that an attempt is made to load a
class which does not pass the class verification phase. |
VirtualMachineError.java | Class | VirtualMachineError is the superclass of all error classes 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 | Placeholder class for the Java keyword
void . |