1.
java.io.InputStream
public abstract class java.io. InputStream ... Reads the next byte of data from the input stream. The value byte is returned as an int in the range 0 to 255 ...
2.
java.util.Hashtable
return, true if the specified object is a key in this hashtable; false otherwise. since, JDK1.0. See also, contains(java.lang.Object) ...
3.
java.lang.Integer
The resulting integer value is returned, exactly as if the argument and the radix 10 were given as arguments to the #parseInt(java.lang.String, int) method. ...
4.
java.util.Hashtable
public class java.util. Hashtable ... since, JDK1.0. See also, containsKey(java.lang.Object) ... See also, put(java.lang.Object, java.lang.Object) ...
5.
java.lang.String
return, true if the String are equal; false otherwise. See also, compareTo(java.lang.String), equalsIgnoreCase(java.lang.String) ...
6.
java.lang.Object
It is not required that if two objects are unequal according to the equals(java.lang.Object) method, then calling the hashCode method on each of the two ...
7.
java.lang.Error
An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch. Most such errors are abnormal ...
8.
java.lang.Error
An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch. Most such errors are abnormal ...
9.
java.lang.Thread
A thread is a thread of execution in a program. The Java Virtual Machine allows an application to have multiple threads of execution running concurrently. ...
10.
java.lang.Throwable
The Throwable class is the superclass of all errors and exceptions in the Java language. Only objects that are instances of this class (or of one of its ...