java.lang

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Apache Harmony Java SE » java package » java.lang 
java.lang
Java Source File NameTypeComment
AbstractMethodError.javaClass Thrown by the virtual machine when an abstract method is called.
AbstractStringBuilder.javaClass A modifiable CharSequence sequence of characters for use in creating and modifying Strings.
Appendable.javaInterface Declares methods to append characters or character sequences.
ArithmeticException.javaClass Thrown when the an invalid arithmetic operation is attempted.
ArrayIndexOutOfBoundsException.javaClass 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.javaClass Thrown when a program attempts to store an element of an incompatible type in an array.
AssertionError.javaClass Thrown when an assertion has failed.
Boolean.javaClass The wrapper for the primitive type boolean .
Byte.javaClass The wrapper for the primitive type byte .
Character.javaClass The wrapper for the primitive type char .
CharSequence.javaInterface This interface represents an ordered set of characters and defines the methods to probe them.
Class.javaClass Runtime representation of a class
author:
   Evgueni Brevnov, Serguei S.
Class1_5Test.javaAnnotation
Class5Test.javaClass Test of the java.lang.reflect.AnnotatedElement AnnotatedElement functionality in java.lang.Class java.lang.Class class.
author:
   Alexey V.
ClassAnnotationsTest.javaAnnotation
ClassCastException.javaClass Thrown when a program attempts to cast a an object to a type with which it is not compatible.
ClassCircularityError.javaClass 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.javaClass 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.javaAnnotation ############################################################################### ############################################################################### TODO: 1.
ClassGenericsTest2.javaClass ############################################################################### ############################################################################### TODO: 1.
ClassGenericsTest3.javaClass ############################################################################### ############################################################################### TODO: 1.
ClassGenericsTest4.javaClass
ClassGenericsTest5.javaClass ############################################################################### ############################################################################### TODO: 1.
ClassHierarchyTest.javaAnnotation
ClassLoader.javaClass
ClassLoaderTest.javaClass
ClassLoaderTestLoad.javaClass
ClassNotFoundException.javaClass Thrown when a class loader is unable to find a class.
ClassTestDesiredAssertionStatus.javaClass
ClassTestForName.javaClass
ClassTestGetAnnotation.javaClass
ClassTestGetClasses.javaClass
ClassTestGetClassLoader.javaClass
ClassTestGetComponentType.javaClass
ClassTestGetConstructor.javaClass
ClassTestGetConstructors.javaClass
ClassTestGetDeclaredClasses.javaClass
ClassTestGetDeclaredConstructor.javaClass
ClassTestGetDeclaredConstructors.javaClass
ClassTestGetDeclaredField.javaClass
ClassTestGetDeclaredFields.javaClass
ClassTestGetDeclaredMethod.javaClass
ClassTestGetDeclaredMethods.javaClass
ClassTestGetDeclaringClass.javaClass
ClassTestGetField.javaClass
ClassTestGetFields.javaClass
ClassTestGetInterfaces.javaClass
ClassTestGetMethod.javaClass
ClassTestGetMethods.javaClass
ClassTestGetModifiers.javaClass
ClassTestGetName.javaClass
ClassTestGetPackage.javaClass
ClassTestGetProtectionDomain.javaClass
ClassTestGetResource.javaClass
ClassTestGetResourceAsStream.javaClass
ClassTestGetSigners.javaClass
ClassTestGetSuperclass.javaClass
ClassTestIsArray.javaClass
ClassTestIsAssignableFrom.javaClass
ClassTestIsInstance.javaClass
ClassTestIsInterface.javaClass
ClassTestIsPrimitive.javaClass
ClassTestNewInstance.javaClass
ClassTestToString.javaClass
Cloneable.javaInterface This (empty) interface must be implemented by all classes that wish to support cloning.
CloneNotSupportedException.javaClass Thrown when a program attempts to clone an object which does not support the Cloneable interface.
Comparable.javaInterface This interface should be implemented by all classes that wish to define a natural order of their instances.
Compiler.javaClass
Deprecated.javaAnnotation Annotation type used to mark program elements that should no longer be used by programmers.
Double.javaClass The wrapper for the primitive type double .
EMThreadSupport.javaClass
author:
   Mikhail Y.
Enum.javaClass The superclass of all enumerated types.
EnumConstantNotPresentException.javaClass Thrown if an enum constant does not exist for a particular name.
Error.javaClass Error is the superclass of all classes that represent unrecoverable errors.
Exception.javaClass Exception is the superclass of all classes that represent recoverable exceptions.
ExceptionInInitializerError.javaClass Thrown when an exception occurs during class initialization.
FinalizerThread.javaClass Dedicated finalizer thread.
Float.javaClass The wrapper for the primitive type float .
IllegalAccessError.javaClass Thrown when the virtual machine notices that a program tries access a field which is not accessible from where it is referenced.
IllegalAccessException.javaClass Thrown when a program attempts to access a field or method which is not accessible from the location where the reference is made.
IllegalArgumentException.javaClass Thrown when a method is invoked with an argument which it can not reasonably deal with.
IllegalMonitorStateException.javaClass 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.javaClass Thrown when an action is attempted at a time when the virtual machine is not in the correct state.
IllegalThreadStateException.javaClass Thrown when an operation is attempted which is not possible given the state that the executing thread is in.
IncompatibleClassChangeError.javaClass IncompatibleClassChangeError is the superclass of all classes which represent errors that occur when inconsistent class files are loaded into the same running image.
IndexOutOfBoundsException.javaClass 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.javaClass A thread-local variable whose value is passed from parent to child thread.
InheritableThreadLocalSupport.javaClass
InheritableThreadLocalTest.javaClass
InstantiationError.javaClass 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.javaClass Thrown when a program attempts to access a constructor which is not accessible from the location where the reference is made.
Integer.javaClass The wrapper for the primitive type int .

As with the specification, this implementation relies on code laid out in Henry S.

InternalError.javaClass Thrown when the virtual machine notices that it has gotten into an undefined state.
InterruptedException.javaClass Thrown when a waiting thread is activated before the condition it was waiting for has been satisfied.
Iterable.javaInterface Objects of classes that implement this interface can be used within a foreach statement.
LinkageError.javaClass LinkageError is the superclass of all error classes that occur when loading and linking class files.
Long.javaClass The wrapper for the primitive type long .

As with the specification, this implementation relies on code laid out in Henry S.

Math.javaClass Class Math provides basic math constants and operations such as trigonometric functions, hyperbolic functions, exponential, logarithms, etc.
NegativeArraySizeException.javaClass Thrown when an attempt is made to create an array with a size of less than zero.
NoClassDefFoundError.javaClass Thrown when the virtual machine is unable to locate a class which it has been asked to load.
NoSuchFieldError.javaClass Thrown when the virtual machine notices that a program tries to reference, on a class or object, a field that does not exist.
NoSuchFieldException.javaClass Thrown when the virtual machine notices that a program tries to reference, on a class or object, a field that does not exist.
NoSuchMethodError.javaClass Thrown when the virtual machine notices that a program tries to reference, on a class or object, a method that does not exist.
NoSuchMethodException.javaClass Thrown when the virtual machine notices that a program tries to reference, on a class or object, a method that does not exist.
NullPointerException.javaClass 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.javaClass The abstract superclass of the classes which represent numeric base types (that is Byte , Short , Integer , Long , Float , and Double .
NumberFormatException.javaClass Thrown when an invalid value is passed to a string-to-number conversion method.
Object.javaClass
ObjectTest.javaClass Unit test for java.lang.Object class.
OutOfMemoryError.javaClass Thrown when a request for memory is made that can not be satisfied using the available platform resources.
Override.javaAnnotation Annotation type used to mark methods that override a method declaration in a superclass.
Package.javaClass
Package5Test.javaClass
author:
   Alexey V.
PackageAccessible.javaClass
PackageTest.javaClass
PrivateConstructor.javaClass
Process.javaClass Represents an external process.
ProcessBuilder.javaClass Creates operating system processes.
ProtectedConstructor.javaClass
Readable.javaInterface Represents a sequence of characters that can be incrementally read (copied) into a CharBuffer .
Runnable.javaInterface Represents a command that can be executed.
Runtime.javaClass
RuntimeAdditionalSupport1.javaClass
RuntimeAdditionalSupport2.javaClass
RuntimeAdditionalTest0.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest1.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest10.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest11.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest12.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest13.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest14.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest15.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest16.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest17.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest18.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest19.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest2.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest20.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest21.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest22.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest23.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest24.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest25.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest26.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest27.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest28.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest29.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest3.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest30.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest31.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest32.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest33.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest34.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest35.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest36.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest37.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest38.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest39.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest4.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest40.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest41.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest42.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest43.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest5.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest6.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest7.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest8.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeAdditionalTest9.javaClass ############################################################################### ############################################################################### TODO: 1.
RuntimeException.javaClass 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.javaClass Represents the permission to execute a runtime-related function.
RuntimeTest.javaClass ############################################################################### ############################################################################### REMINDER("XXX") LIST: 1.
RuntimeTest2.javaClass This RuntimeTest class is used to test the Core API Runtime class Created on January 5, 2005 ############################################################################### ############################################################################### REMINDER("XXX") LIST: 1.
SecurityException.javaClass Thrown when a security manager check fails.
SecurityManager.javaClass Provides security verification facilities for applications.
SecurityManagerRTest.javaClass
Short.javaClass The wrapper for the primitive type short .
StackOverflowError.javaClass Thrown when the depth of the callstack of the running program excedes some platform or virtual machine specific limit.
StackTraceElement.javaClass
StackTraceElementTest.javaClass
StrictMath.javaClass 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.javaClass An immutable sequence of characters/code units ( char s).
StringBuffer.javaClass StringBuffer is a variable size contiguous indexable array of characters.
StringBuilder.javaClass A modifiable CharSequence sequence of characters for use in creating and modifying Strings.
StringIndexOutOfBoundsException.javaClass 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.javaAnnotation Annotation type used to indicate that the compiler should not issue the specified warnings for the marked program element.
System.javaClass
author:
   Roman S.
SystemExtensionTest.javaClass
SystemTest.javaClass
Thread.javaClass
ThreadDeath.javaClass ThreadDeath is thrown when a thread stops executing.
ThreadGroup.javaClass
ThreadGroupTest.javaClass
ThreadLocal.javaClass A variable for which each thread has its own value.
ThreadRTest.javaClass
ThreadTest.javaClass This class provides an implementation of J2SE v.
ThreadWeakRef.javaClass
Throwable.javaClass
ThrowableRTest.javaClass
ThrowableTest.javaClass
TypeNotPresentException.javaClass 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.javaClass Thrown when the virtual machine must throw an error which does not match any known exceptional condition.
UnsatisfiedLinkError.javaClass Thrown when an attempt is made to invoke a native for which an implementation could not be found.
UnsupportedClassVersionError.javaClass Thrown when an attempt is made to load a class with a format version that is not supported by the virtual machine.
UnsupportedOperationException.javaClass Thrown when an unsupported operation is attempted.
VerifyError.javaClass Thrown when the virtual machine notices that an attempt is made to load a class which does not pass the class verification phase.
VirtualMachineError.javaClass VirtualMachineError is the superclass of all error classes that occur during the operation of the virtual machine.
VMClassRegistry.javaClass 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.javaClass 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.javaClass 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.javaClass This class does the following:
  • starts Finalizer and Execution Manager helper threads.
  • VMThreadManager.javaClass 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.javaClass Placeholder class for the Java keyword void .
    w___w___w.j_a___v_a__2___s_.__c_om | Contact Us
    Copyright 2009 - 12 Demo Source and Support. All rights reserved.
    All other trademarks are property of their respective owners.