
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java.lang.Interfaces
Introduction
The java.lang.Interfaces provides different interfaces used under java lang package.
Interface Summary
Sr.No. | Interface & Description |
---|---|
1 |
Appendable This is an object to which char sequences and values can be appended |
2 |
CharSequence This is a CharSequence is a readable sequence of char values. |
3 |
Cloneable This is a class implements the Cloneable interface to indicate to the Object.clone() method that it is legal for that method to make a field-for-field copy of instances of that class. |
4 |
Comparable<T> This imposes a total ordering on the objects of each class that implements it. |
5 |
Iterable<T> Implementing this interface allows an object to be the target of the "foreach" statement. |
6 |
Readable This is a Readable is a source of characters. |
7 |
Runnable This is the Runnable interface should be implemented by any class whose instances are intended to be executed by a thread. |
8 |
Thread.UncaughtExceptionHandler This is the Interface for handlers invoked when a Thread abruptly terminates due to an uncaught exception. |