Added Classes and Interfaces |
Appendable
|
An object to which char sequences and values can be appended. |
Deprecated
|
A program element annotated &at;Deprecated is one that programmers
are discouraged from using, typically because it is dangerous,
or because a better alternative exists. |
Enum
|
This is the common base class of all Java language enumeration types. |
Iterable
|
Implementing this interface allows an object to be the target of
the "foreach" statement. |
Overrides
|
Indicates that a method declaration is intended to override a
method declaration in a superclass. |
ProcessBuilder
|
This class is used to create operating system processes. |
Readable
|
A Readable is a source of characters. |
StringBuilder
|
A mutable sequence of characters. |
Thread.UncaughtExceptionHandler
|
Interface for handlers invoked when a Thread abruptly
terminates due to an uncaught exception. |
TypeNotPresentException
|
Thrown when an application tries to access a type using a string
representing the type's name, but no definition for the type with
the specified name can be found. |
Changed Classes |
Boolean
|
The Boolean class wraps a value of the primitive type
boolean in an object. |
Byte
|
The Byte class wraps a value of primitive type
byte in an object. |
Character
|
The Character class wraps a value of the primitive
type char in an object. |
Character.UnicodeBlock
|
A family of character subsets representing the character blocks in the
Unicode specification. |
Class
|
Instances of the class Class represent classes and interfaces
in a running Java application. |
ClassLoader
|
A class loader is an object that is responsible for loading classes. |
Double
|
The Double class wraps a value of the primitive type
double in an object. |
Float
|
The Float class wraps a value of primitive type
float in an object. |
IllegalArgumentException
|
Thrown to indicate that a method has been passed an illegal or
inappropriate argument. |
IllegalStateException
|
Signals that a method has been invoked at an illegal or
inappropriate time. |
Integer
|
The Integer class wraps a value of the primitive type
int in an object. |
Long
|
The Long class wraps a value of the primitive type
long in an object. |
Math
|
The class Math contains methods for performing basic
numeric operations such as the elementary exponential, logarithm,
square root, and trigonometric functions. |
Package
|
Package objects contain version information
about the implementation and specification of a Java package. |
SecurityException
|
Thrown by the security manager to indicate a security violation. |
Short
|
The Short class wraps a value of primitive type
short in an object. |
StackTraceElement
|
An element in a stack trace, as returned by Throwable.getStackTrace(). |
StrictMath
|
The class StrictMath contains methods for performing basic
numeric operations such as the elementary exponential, logarithm,
square root, and trigonometric functions. |
String
|
The String class represents character strings. |
StringBuffer
|
A thread-safe, mutable sequence of characters. |
System
|
The System class contains several useful class fields
and methods. |
Thread
|
A thread is a thread of execution in a program. |
ThreadGroup
|
A thread group represents a set of threads. |
ThreadLocal
|
This class provides thread-local variables. |
UnsupportedOperationException
|
Thrown to indicate that the requested operation is not supported. |