java.lang

Home
Java Source Code / Java Documentation 2
1.2D
2.3D
3.Ajax
4.Algebra
5.App Engine
6.Aspect
7.Assemble
8.Cache
9.Cassandra
10.Chat
11.Cloud
12.CMS
13.CouchDB
14.Crypt
15.Database
16.Distributed
17.Eclipse
18.Facebook
19.File
20.Forum
21.GAE
22.Game
23.Google tech
24.Graph
25.Graphic
26.GWT
27.Hibernate
28.HTML
29.HTTP
30.Image
31.IntelliJ
32.IRC
33.J2EE
34.J2ME
35.JDBC
36.JPA
37.JSON
38.JSR
39.JUnit
40.JVM
41.Language
42.Linux
43.Math
44.Maven
45.Media
46.Messenger
47.MiddleWare
48.Mobile
49.Mock
50.MongoDB
51.Mp3
52.Music
53.MVC
54.Network
55.OpenID
56.OSGi
57.Parse
58.Persist
59.Petri
60.Phone
61.Physics
62.REST
63.Robot
64.RPC
65.RSS
66.Ruby
67.Script
68.Search
69.Spring
70.SQL
71.SSH
72.Sudoku
73.Swing
74.Tapestry
75.Test
76.Text
77.Torrent
78.Twitter
79.UML
80.UnTagged
81.Utilities
82.Web
83.Wiki
84.XML
Java Source Code / Java Documentation 2 » Script » java2script » java.lang 
java.lang
Java Source File NameTypeComment
AbstractMethodError.javaClass This error is thrown when the VM notices that a an attempt is being made to invoke an abstract method.
AbstractStringBuilder.javaClass

A modifiable CharSequence sequence of characters for use in creating and modifying Strings.

Appendable.javaInterface Appendable is an object used to append character or character sequence.
ArithmeticException.javaClass This runtime exception is thrown when the an invalid arithmetic operation is attempted.
ArrayIndexOutOfBoundsException.javaClass 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.javaClass 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.javaClass

Indicates that an assertion has failed.

Character.javaClass

Character is the wrapper for the primitive type char.

CharSequence.javaInterface The CharSequence interface represents an ordered set of characters and the functions to probe them.
ClassCastException.javaClass This runtime exception is thrown when a program attempts to cast a an object to a type which it is not compatible with.
ClassCircularityError.javaClass 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.javaClass This error is thrown by the class loader when it discovers that a class that it is loading does not have the correct shape.
ClassNotFoundException.javaClass This exception is thrown when a classloader is unable to find a class.
Cloneable.javaInterface This (empty) interface should be implemented by all classes which wish to support cloning.
CloneNotSupportedException.javaClass This exception is 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 which wish to define a natural ordering of their instances.
Enum.javaClass The superclass of all enumerated types.
Error.javaClass This class is the superclass of all classes which represent unrecoverable errors.
Exception.javaClass This class is the superclass of all classes which represent recoverable exceptions.
ExceptionInInitializerError.javaClass This error is thrown when an exception occurs during class initialization.
IllegalAccessError.javaClass 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.javaClass 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.javaClass This runtime exception is thrown when a method is invoked with an argument which it can not reasonably deal with.
IllegalMonitorStateException.javaClass 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.javaClass This runtime exception is thrown when an action is attempted at a time when the virtual machine is not in the correct state.
IllegalThreadStateException.javaClass This runtime exception is thrown when an operation is attempted which is not possible given the state that the executing thread is in.
IncompatibleClassChangeError.javaClass 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.javaClass 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.
InstantiationError.javaClass 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.javaClass This exception is thrown when a program attempts to access a constructor which is not accessible from the location where the reference is made.
InternalError.javaClass This error is thrown when the VM notices that it has gotten into a state which it does not understand.
InterruptedException.javaClass This exception is thrown when a waiting thread is activated before the condition it was waiting on has been satisfied.
Iterable.javaInterface
LinkageError.javaClass This class is the superclass of all classes which represent errors that occur when loading and linking class files.
NegativeArraySizeException.javaClass This runtime exception is thrown when an attempt is made to create an array whose size would be less than zero.
NoClassDefFoundError.javaClass This error is thrown when the VM is unable to locate a class which it has been asked to load.
NoSuchFieldError.javaClass 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.javaClass
NoSuchMethodError.javaClass 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.javaClass This exception is thrown when a program attempts to access a method which does not exist in a class.
NullPointerException.javaClass 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.
NumberFormatException.javaClass This runtime exception is thrown when a "string to number" conversion routine is passed an invalid value.
OutOfMemoryError.javaClass 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.
Readable.javaInterface Readable marks that the implementing class provides character sequence.
Runnable.javaInterface The runnable interface must be implemented by all classes which want to be run as threads.
RuntimeException.javaClass This class is the superclass of all classes which represent exceptional conditions which occur as a result of the running of the virtual machine.
SecurityException.javaClass This runtime exception is thrown when a security manager check fails.
StackOverflowError.javaClass This error is thrown when the depth of the callstack of the running program excedes some platform or virtual machine specific limit.
StackTraceElement.javaClass An implementation of this class is provided, but the documented constructor can be used by the VM specific implementation to create instances.
StrictMath.javaClass Class StrictMath provides various numeric operations using the standards set by the known "Freely Distributable Math Library" (fdlibm).
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 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.
Thread.javaClass
ThreadDeath.javaClass ThreadDeath is thrown when a thread stops executing.
ThreadGroup.javaClass
Throwable.javaClass The Throwable class is the superclass of all errors and exceptions in the Java language.
TypeNotPresentException.javaClass

Indicates that a class, interface, enum or annotation type cannot be found.

UnknownError.javaClass This error is thrown when the virtual machine must throw an error which does not match any known exceptional condition.
UnsatisfiedLinkError.javaClass This error is thrown when an attempt is made to invoke a native for which an implementation could not be found.
UnsupportedClassVersionError.javaClass 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.javaClass This runtime exception is thrown when an unsupported operation is attempted.
VerifyError.javaClass 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.javaClass This class is the superclass of all classes which represent errors that occur during the operation of the virtual machine.
Void.javaClass
w__w___w__._ja___v_a2___s.c___o__m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.