A B C D E F G H I J K L M N O P R S T U V W Y

A

abs(int) - Static method in class java.lang.Math
Take the absolute value of the argument.
abs(long) - Static method in class java.lang.Math
Take the absolute value of the argument.
abs(float) - Static method in class java.lang.Math
Take the absolute value of the argument.
abs(double) - Static method in class java.lang.Math
Take the absolute value of the argument.
ABSTRACT - Static variable in class java.lang.reflect.Modifier
Abstract:
Class: may not be instantiated. Method: may not be called.
AbstractCollection - Class in java.util
A basic implementation of most of the methods in the Collection interface to make it easier to create a collection.
AbstractCollection() - Constructor for class java.util.AbstractCollection
The main constructor, for use by subclasses.
AbstractList - Class in java.util
A basic implementation of most of the methods in the List interface to make it easier to create a List based on a random-access data structure.
AbstractList() - Constructor for class java.util.AbstractList
The main constructor, for use by subclasses.
AbstractMap - Class in java.util
An abstract implementation of Map to make it easier to create your own implementations.
AbstractMap() - Constructor for class java.util.AbstractMap
The main constructor, for use by subclasses.
AbstractMethodError - Error in java.lang
An AbstractMethodError is thrown when an application attempts to access an abstract method.
AbstractMethodError() - Constructor for error java.lang.AbstractMethodError
Create an error without a message.
AbstractMethodError(String) - Constructor for error java.lang.AbstractMethodError
Create an error with a message.
AbstractSet - Class in java.util
An abstract implementation of Set to make it easier to create your own implementations.
AbstractSet() - Constructor for class java.util.AbstractSet
The main constructor, for use by subclasses.
acos(double) - Static method in class java.lang.Math
The trigonometric function arccos.
add(Object) - Method in class java.util.AbstractCollection
Add an object to the collection (optional operation).
add(int, Object) - Method in class java.util.AbstractList
Insert an element into the list at a given position (optional operation).
add(Object) - Method in class java.util.AbstractList
Add an element to the end of the list (optional operation).
add(Object) - Method in class java.util.ArrayList
Appends the supplied element to the end of this list.
add(int, Object) - Method in class java.util.ArrayList
Adds the supplied element at the specified index, shifting all elements currently at that index or higher one to the right.
add(Object) - Method in interface java.util.Collection
Add an element to this collection.
add(Object) - Method in class java.util.HashSet
Adds the given Object to the set if it is not already in the Set.
add(int, Object) - Method in interface java.util.List
Insert an element into the list at a given position (optional operation).
add(Object) - Method in interface java.util.List
Add an element to the end of the list (optional operation).
add(Object) - Method in interface java.util.ListIterator
Insert an element into the list at the current position of the iterator (optional operation).
add(Object) - Method in interface java.util.Set
Adds the specified element to the set if it is not already present (optional operation).
add(Object) - Method in class java.util.Vector
Adds an object to the Vector.
add(int, Object) - Method in class java.util.Vector
Adds an object at the specified index.
addAll(Collection) - Method in class java.util.AbstractCollection
Add all the elements of a given collection to this collection (optional operation).
addAll(int, Collection) - Method in class java.util.AbstractList
Insert the contents of a collection into the list at a given position (optional operation).
addAll(Collection) - Method in class java.util.ArrayList
Add each element in the supplied Collection to this List.
addAll(int, Collection) - Method in class java.util.ArrayList
Add all elements in the supplied collection, inserting them beginning at the specified index.
addAll(Collection) - Method in interface java.util.Collection
Add the contents of a given collection to this collection.
addAll(int, Collection) - Method in interface java.util.List
Insert the contents of a collection into the list at a given position (optional operation).
addAll(Collection) - Method in interface java.util.List
Add the contents of a collection to the end of the list (optional operation).
addAll(Collection) - Method in interface java.util.Set
Adds all of the elements of the given collection to this set (optional operation).
addAll(Collection) - Method in class java.util.Vector
Appends all elements of the given collection to the end of this Vector.
addAll(int, Collection) - Method in class java.util.Vector
Inserts all elements of the given collection at the given index of this Vector.
addElement(Object) - Method in class java.util.Vector
Adds an element to the Vector at the end of the Vector.
append(Object) - Method in class java.lang.StringBuffer
Append the String value of the argument to this StringBuffer.
append(String) - Method in class java.lang.StringBuffer
Append the String to this StringBuffer.
append(StringBuffer) - Method in class java.lang.StringBuffer
Append the StringBuffer value of the argument to this StringBuffer.
append(char[]) - Method in class java.lang.StringBuffer
Append the char array to this StringBuffer.
append(char[], int, int) - Method in class java.lang.StringBuffer
Append part of the char array to this StringBuffer.
append(boolean) - Method in class java.lang.StringBuffer
Append the String value of the argument to this StringBuffer.
append(char) - Method in class java.lang.StringBuffer
Append the char to this StringBuffer.
append(int) - Method in class java.lang.StringBuffer
Append the String value of the argument to this StringBuffer.
append(long) - Method in class java.lang.StringBuffer
Append the String value of the argument to this StringBuffer.
append(float) - Method in class java.lang.StringBuffer
Append the String value of the argument to this StringBuffer.
append(double) - Method in class java.lang.StringBuffer
Append the String value of the argument to this StringBuffer.
append(Object) - Method in class java.lang.StringBuilder
Append the String value of the argument to this StringBuilder.
append(String) - Method in class java.lang.StringBuilder
Append the String to this StringBuilder.
append(StringBuffer) - Method in class java.lang.StringBuilder
Append the StringBuilder value of the argument to this StringBuilder.
append(char[]) - Method in class java.lang.StringBuilder
Append the char array to this StringBuilder.
append(char[], int, int) - Method in class java.lang.StringBuilder
Append part of the char array to this StringBuilder.
append(boolean) - Method in class java.lang.StringBuilder
Append the String value of the argument to this StringBuilder.
append(char) - Method in class java.lang.StringBuilder
Append the char to this StringBuilder.
append(int) - Method in class java.lang.StringBuilder
Append the String value of the argument to this StringBuilder.
append(long) - Method in class java.lang.StringBuilder
Append the String value of the argument to this StringBuilder.
append(float) - Method in class java.lang.StringBuilder
Append the String value of the argument to this StringBuilder.
append(double) - Method in class java.lang.StringBuilder
Append the String value of the argument to this StringBuilder.
ArithmeticException - Exception in java.lang
Thrown when a math error has occured, such as trying to divide an integer by zero.
ArithmeticException() - Constructor for exception java.lang.ArithmeticException
Create an exception without a message.
ArithmeticException(String) - Constructor for exception java.lang.ArithmeticException
Create an exception with a message.
arraycopy(Object, int, Object, int, int) - Static method in class java.lang.System
Copy one array onto another from src[srcStart] ...
ArrayIndexOutOfBoundsException - Exception in java.lang
Thrown when attempting to access a position outside the valid range of an array.
ArrayIndexOutOfBoundsException() - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
Create an exception without a message.
ArrayIndexOutOfBoundsException(String) - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
Create an exception with a message.
ArrayIndexOutOfBoundsException(int) - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
Create an exception indicating the illegal index.
ArrayList - Class in java.util
An array-backed implementation of the List interface.
ArrayList(int) - Constructor for class java.util.ArrayList
Construct a new ArrayList with the supplied initial capacity.
ArrayList() - Constructor for class java.util.ArrayList
Construct a new ArrayList with the default capacity (16).
ArrayList(Collection) - Constructor for class java.util.ArrayList
Construct a new ArrayList, and initialize it with the elements in the supplied Collection.
Arrays - Class in java.util
This class contains various static utility methods performing operations on arrays, and a method to provide a List "view" of an array to facilitate using arrays with Collection-based APIs.
ArrayStoreException - Exception in java.lang
Thrown when trying to store an object of the wrong runtime type in an array.
ArrayStoreException() - Constructor for exception java.lang.ArrayStoreException
Create an exception without a message.
ArrayStoreException(String) - Constructor for exception java.lang.ArrayStoreException
Create an exception with a message.
asin(double) - Static method in class java.lang.Math
The trigonometric function arcsin.
atan(double) - Static method in class java.lang.Math
The trigonometric function arcsin.
atan2(double, double) - Static method in class java.lang.Math
A special version of the trigonometric function arctan, for converting rectangular coordinates (x, y) to polar (r, theta).
available() - Method in class java.io.BufferedInputStream
This method returns the number of bytes that can be read from this stream before a read can block.
available() - Method in class java.io.FilterInputStream
Calls the in.available() method.
available() - Method in class java.io.InputStream
This method returns the number of bytes that can be read from this stream before a read can block.

B

Boolean - Class in java.lang
Instances of class Boolean represent primitive boolean values.
Boolean(boolean) - Constructor for class java.lang.Boolean
Create a Boolean object representing the value of the argument value.
Boolean(String) - Constructor for class java.lang.Boolean
Creates a Boolean object representing the primitive true if and only if s matches the string "true" ignoring case, otherwise the object will represent the primitive false.
booleanValue() - Method in class java.lang.Boolean
Return the primitive boolean value of this Boolean object.
buf - Variable in class java.io.BufferedInputStream
The buffer used for storing data from the underlying stream.
buf - Variable in class java.io.ByteArrayOutputStream
The internal buffer where the data written is stored
BufferedInputStream - Class in java.io
This subclass of FilterInputStream buffers input from an underlying implementation to provide a possibly more efficient read mechanism.
BufferedInputStream(InputStream) - Constructor for class java.io.BufferedInputStream
This method initializes a new BufferedInputStream that will read from the specified subordinate stream with a default buffer size of 2048 bytes
BufferedInputStream(InputStream, int) - Constructor for class java.io.BufferedInputStream
This method initializes a new BufferedInputStream that will read from the specified subordinate stream with a buffer size that is specified by the caller.
BufferedReader - Class in java.io
This subclass of FilterReader buffers input from an underlying implementation to provide a possibly more efficient read mechanism.
BufferedReader(Reader) - Constructor for class java.io.BufferedReader
Create a new BufferedReader that will read from the specified subordinate stream with a default buffer size of 8192 chars.
BufferedReader(Reader, int) - Constructor for class java.io.BufferedReader
Create a new BufferedReader that will read from the specified subordinate stream with a buffer size that is specified by the caller.
Byte - Class in java.lang
Instances of class Byte represent primitive byte values.
Byte(byte) - Constructor for class java.lang.Byte
Create a Byte object representing the value of the byte argument.
Byte(String) - Constructor for class java.lang.Byte
Create a Byte object representing the value specified by the String argument
ByteArrayOutputStream - Class in java.io
This class allows data to be written to a byte array buffer and and then retrieved by an application.
ByteArrayOutputStream() - Constructor for class java.io.ByteArrayOutputStream
This method initializes a new ByteArrayOutputStream with the default buffer size of 32 bytes.
ByteArrayOutputStream(int) - Constructor for class java.io.ByteArrayOutputStream
This method initializes a new ByteArrayOutputStream with a specified initial buffer size.
byteValue() - Method in class java.lang.Byte
Return the value of this Byte.
byteValue() - Method in class java.lang.Double
Return the value of this Double as a byte.
byteValue() - Method in class java.lang.Float
Return the value of this Float as a byte.
byteValue() - Method in class java.lang.Integer
Return the value of this Integer as a byte.
byteValue() - Method in class java.lang.Long
Return the value of this Long as a byte.
byteValue() - Method in class java.lang.Number
Return the value of this Number as a byte.
byteValue() - Method in class java.lang.Short
Return the value of this Short as a byte.

C

capacity() - Method in class java.lang.StringBuffer
Get the total number of characters this StringBuffer can support before it must be grown.
capacity() - Method in class java.lang.StringBuilder
Get the total number of characters this StringBuilder can support before it must be grown.
capacity() - Method in class java.util.Vector
Returns the size of the internal data array (not the amount of elements contained in the Vector).
capacityIncrement - Variable in class java.util.Vector
The amount the Vector's internal array should be increased in size when a new element is added that exceeds the current size of the array, or when Vector.ensureCapacity(int) is called.
ceil(double) - Static method in class java.lang.Math
Take the nearest integer that is that is greater than or equal to the argument.
Character - Class in java.lang
Wrapper class for the primitive char data type.
Character(char) - Constructor for class java.lang.Character
Wraps up a character.
charAt(int) - Method in class java.lang.String
Returns the character located at the specified index within this String.
charAt(int) - Method in class java.lang.StringBuffer
Get the character at the specified index.
charAt(int) - Method in class java.lang.StringBuilder
Get the character at the specified index.
charValue() - Method in class java.lang.Character
Returns the character which has been wrapped by this class.
checkError() - Method in class java.io.PrintStream
This method checks to see if an error has occurred on this stream.
checkError() - Method in class java.io.PrintWriter
This method checks to see if an error has occurred on this stream.
Class - Class in java.lang
A Class represents a Java type.
ClassCastException - Exception in java.lang
Thrown when an attempt is made to cast an object which is not of the appropriate runtime type.
ClassCastException() - Constructor for exception java.lang.ClassCastException
Create an exception without a message.
ClassCastException(String) - Constructor for exception java.lang.ClassCastException
Create an exception with a message.
ClassLoader - Class in java.lang
The ClassLoader is a way of customizing the way Java gets its classes and loads them into memory.
ClassLoader(ClassLoader) - Constructor for class java.lang.ClassLoader
Create a new ClassLoader with the specified parent.
ClassNotFoundException - Exception in java.lang
Thrown when a class is requested by reflection, but the class definition cannot be found.
ClassNotFoundException() - Constructor for exception java.lang.ClassNotFoundException
Create an exception without a message.
ClassNotFoundException(String) - Constructor for exception java.lang.ClassNotFoundException
Create an exception with a message.
ClassNotFoundException(String, Throwable) - Constructor for exception java.lang.ClassNotFoundException
Create an exception with a message and chain it to the exception which occurred while loading the class.
clear() - Method in class java.util.AbstractCollection
Remove all elements from the collection (optional operation).
clear() - Method in class java.util.AbstractList
Clear the list, such that a subsequent call to isEmpty() would return true (optional operation).
clear() - Method in class java.util.AbstractMap
Remove all entries from this Map (optional operation).
clear() - Method in class java.util.ArrayList
Removes all elements from this List
clear() - Method in interface java.util.Collection
Clear the collection, such that a subsequent call to isEmpty() would return true.
clear() - Method in class java.util.HashMap
Clears the Map so it has no keys.
clear() - Method in class java.util.HashSet
Empties this Set of all elements; this takes constant time.
clear() - Method in class java.util.Hashtable
Clears the hashtable so it has no keys.
clear() - Method in interface java.util.List
Clear the list, such that a subsequent call to isEmpty() would return true (optional operation).
clear() - Method in interface java.util.Map
Remove all entries from this Map (optional operation).
clear() - Method in interface java.util.Set
Removes all elements from this set (optional operation).
clear() - Method in class java.util.Vector
Clears all elements in the Vector and sets its size to 0.
clone() - Method in class java.lang.Object
This method may be called to create a new copy of the Object.
clone() - Method in class java.util.AbstractMap
Create a shallow copy of this Map, no keys or values are copied.
clone() - Method in class java.util.HashMap
Returns a shallow clone of this HashMap.
clone() - Method in class java.util.Hashtable
Returns a shallow clone of this Hashtable.
Cloneable - Interface in java.lang
This interface should be implemented by classes wishing to support of override Object.clone().
CloneNotSupportedException - Exception in java.lang
Thrown to indicate an object should not or could not be cloned.
CloneNotSupportedException() - Constructor for exception java.lang.CloneNotSupportedException
Create an exception without a message.
CloneNotSupportedException(String) - Constructor for exception java.lang.CloneNotSupportedException
Create an exception with a message.
close() - Method in class java.io.BufferedInputStream
This method closes the underlying input stream and frees any resources associated with it.
close() - Method in class java.io.BufferedReader
This method closes the underlying stream and frees any associated resources.
close() - Method in class java.io.FilterInputStream
This method closes the input stream by closing the input stream that this object is filtering.
close() - Method in class java.io.FilterOutputStream
This method closes the underlying OutputStream.
close() - Method in class java.io.InputStream
This method closes the stream.
close() - Method in class java.io.InputStreamReader
This method closes this stream, as well as the underlying InputStream.
close() - Method in class java.io.OutputStream
This method closes the stream.
close() - Method in class java.io.OutputStreamWriter
This method closes this stream, and the underlying OutputStream
close() - Method in class java.io.PrintStream
This method closes this stream and all underlying streams.
close() - Method in class java.io.PrintWriter
This method closes this stream and all underlying streams.
close() - Method in class java.io.Reader
Closes the stream.
close() - Method in class java.io.Writer
This method closes the stream.
Collection - Interface in java.util
Interface that represents a collection of objects.
Collections - Class in java.util
Utility class consisting of static methods that operate on, or return Collections.
COMBINING_SPACING_MARK - Static variable in class java.lang.Character
Mc = Mark, Spacing Combining (Normative).
Comparable - Interface in java.lang
Interface for objects that can be ordering among other objects.
compare(double, double) - Static method in class java.lang.Double
Behaves like new Double(x).compareTo(new Double(y)); in other words this compares two doubles, special casing NaN and zero, without the overhead of objects.
compare(float, float) - Static method in class java.lang.Float
Behaves like new Float(x).compareTo(new Float(y)); in other words this compares two floats, special casing NaN and zero, without the overhead of objects.
compareTo(Byte) - Method in class java.lang.Byte
Compare two Bytes numerically by comparing their byte values.
compareTo(Object) - Method in class java.lang.Byte
Behaves like compareTo(Byte) unless the Object is not a Byte.
compareTo(Character) - Method in class java.lang.Character
Compares another Character to this Character, numerically.
compareTo(Object) - Method in class java.lang.Character
Compares an object to this Character.
compareTo(Object) - Method in interface java.lang.Comparable
Compares this object with another, and returns a numerical result based on the comparison.
compareTo(Double) - Method in class java.lang.Double
Compare two Doubles numerically by comparing their double values.
compareTo(Object) - Method in class java.lang.Double
Behaves like compareTo(Double) unless the Object is not an Double.
compareTo(Float) - Method in class java.lang.Float
Compare two Floats numerically by comparing their float values.
compareTo(Object) - Method in class java.lang.Float
Behaves like compareTo(Float) unless the Object is not an Float.
compareTo(Integer) - Method in class java.lang.Integer
Compare two Integers numerically by comparing their int values.
compareTo(Object) - Method in class java.lang.Integer
Behaves like compareTo(Integer) unless the Object is not an Integer.
compareTo(Long) - Method in class java.lang.Long
Compare two Longs numerically by comparing their long values.
compareTo(Object) - Method in class java.lang.Long
Behaves like compareTo(Long) unless the Object is not a Long.
compareTo(Short) - Method in class java.lang.Short
Compare two Shorts numerically by comparing their short values.
compareTo(Object) - Method in class java.lang.Short
Behaves like compareTo(Short) unless the Object is not a Short.
compareTo(String) - Method in class java.lang.String
Compares this String and another String (case sensitive, lexicographically).
compareTo(Object) - Method in class java.lang.String
Behaves like compareTo(java.lang.String) unless the Object is not a String.
ConcurrentModificationException - Exception in java.util
Exception that is thrown by the collections classes when it is detected that a modification has been made to a data structure when this is not allowed, such as when a collection is structurally modified while an Iterator is operating over it.
ConcurrentModificationException() - Constructor for exception java.util.ConcurrentModificationException
Constructs a ConcurrentModificationException with no detail message.
ConcurrentModificationException(String) - Constructor for exception java.util.ConcurrentModificationException
Constructs a ConcurrentModificationException with a detail message.
CONNECTOR_PUNCTUATION - Static variable in class java.lang.Character
Pc = Punctuation, Connector (Informative).
contains(Object) - Method in class java.util.AbstractCollection
Test whether this collection contains a given object.
contains(Object) - Method in class java.util.ArrayList
Returns true iff element is in this ArrayList.
contains(Object) - Method in interface java.util.Collection
Test whether this collection contains a given object as one of its elements.
contains(Object) - Method in class java.util.HashSet
Returns true if the supplied element is in this Set.
contains(Object) - Method in class java.util.Hashtable
Returns true if this Hashtable contains a value o, such that o.equals(value).
contains(Object) - Method in interface java.util.List
Test whether this list contains a given object as one of its elements.
contains(Object) - Method in interface java.util.Set
Returns true if the set contains the specified element.
contains(Object) - Method in class java.util.Vector
Returns true when elem is contained in this Vector.
containsAll(Collection) - Method in class java.util.AbstractCollection
Tests whether this collection contains all the elements in a given collection.
containsAll(Collection) - Method in interface java.util.Collection
Test whether this collection contains every element in a given collection.
containsAll(Collection) - Method in interface java.util.List
Test whether this list contains every element in a given collection.
containsAll(Collection) - Method in interface java.util.Set
Returns true if this set contains all elements in the specified collection.
containsAll(Collection) - Method in class java.util.Vector
Returns true if this Vector contains all the elements in c.
containsKey(Object) - Method in class java.util.AbstractMap
Returns true if this contains a mapping for the given key.
containsKey(Object) - Method in class java.util.HashMap
Returns true if the supplied object equals() a key in this HashMap.
containsKey(Object) - Method in class java.util.Hashtable
Returns true if the supplied object equals() a key in this Hashtable.
containsKey(Object) - Method in interface java.util.Map
Returns true if this contains a mapping for the given key.
containsValue(Object) - Method in class java.util.AbstractMap
Returns true if this contains at least one mapping with the given value.
containsValue(Object) - Method in class java.util.HashMap
Returns true if this HashMap contains a value o, such that o.equals(value).
containsValue(Object) - Method in class java.util.Hashtable
Returns true if this Hashtable contains a value o, such that o.equals(value).
containsValue(Object) - Method in interface java.util.Map
Returns true if this contains at least one mapping with the given value.
CONTROL - Static variable in class java.lang.Character
Cc = Other, Control (Normative).
copyInto(Object[]) - Method in class java.util.Vector
Copies the contents of the Vector into the provided array.
cos(double) - Static method in class java.lang.Math
The trigonometric function cos.
count - Variable in class java.io.BufferedInputStream
The number of valid bytes currently in the buffer.
count - Variable in class java.io.ByteArrayOutputStream
The number of bytes that have been written to the buffer
CURRENCY_SYMBOL - Static variable in class java.lang.Character
Sc = Symbol, Currency (Informative).
currentThread() - Static method in class java.lang.Thread
Get the currently executing Thread.
currentTimeMillis() - Static method in class java.lang.System
Get the current time, measured in the number of milliseconds from the beginning of Jan.

D

DASH_PUNCTUATION - Static variable in class java.lang.Character
Pd = Punctuation, Dash (Informative).
DECIMAL_DIGIT_NUMBER - Static variable in class java.lang.Character
Nd = Number, Decimal Digit (Normative).
decode(String) - Static method in class java.lang.Byte
Convert the specified String into a Byte.
decode(String) - Static method in class java.lang.Integer
Convert the specified String into an Integer.
decode(String) - Static method in class java.lang.Long
Convert the specified String into a Long.
decode(String) - Static method in class java.lang.Short
Convert the specified String into a Short.
defaults - Variable in class java.util.Properties
The property list that contains default values for any keys not in this property list.
delete(int, int) - Method in class java.lang.StringBuffer
Delete characters from this StringBuffer.
delete(int, int) - Method in class java.lang.StringBuilder
Delete characters from this StringBuilder.
deleteCharAt(int) - Method in class java.lang.StringBuffer
Delete a character from this StringBuffer.
deleteCharAt(int) - Method in class java.lang.StringBuilder
Delete a character from this StringBuilder.
digit(char, int) - Static method in class java.lang.Character
Converts a character into a digit of the specified radix.
Double - Class in java.lang
Instances of class Double represent primitive double values.
Double(double) - Constructor for class java.lang.Double
Create a Double from the primitive double specified.
Double(String) - Constructor for class java.lang.Double
Create a Double from the specified String.
doubleValue() - Method in class java.lang.Byte
Return the value of this Byte as a double.
doubleValue() - Method in class java.lang.Double
Return the value of this Double.
doubleValue() - Method in class java.lang.Float
Return the value of this Float as a double
doubleValue() - Method in class java.lang.Integer
Return the value of this Integer as a double.
doubleValue() - Method in class java.lang.Long
Return the value of this Long as a double.
doubleValue() - Method in class java.lang.Number
Return the value of this Number as a float.
doubleValue() - Method in class java.lang.Short
Return the value of this Short as a double.

E

E - Static variable in class java.lang.Math
The most accurate approximation to the mathematical constant e: 2.718281828459045.
elementAt(int) - Method in class java.util.Vector
Returns the Object stored at index.
elementCount - Variable in class java.util.Vector
The number of elements currently in the vector, also returned by Vector.size().
elementData - Variable in class java.util.Vector
The internal array used to hold members of a Vector.
elements() - Method in class java.util.Hashtable
Return an enumeration of the values of this table.
elements() - Method in class java.util.Vector
Returns an Enumeration of the elements of this Vector.
ENCLOSING_MARK - Static variable in class java.lang.Character
Me = Mark, Enclosing (Normative).
END_PUNCTUATION - Static variable in class java.lang.Character
Pe = Punctuation, Close (Informative).
endsWith(String) - Method in class java.lang.String
Predicate which determines if this String ends with a given suffix.
ensureCapacity(int) - Method in class java.lang.StringBuffer
Increase the capacity of this StringBuffer.
ensureCapacity(int) - Method in class java.lang.StringBuilder
Increase the capacity of this StringBuilder.
ensureCapacity(int) - Method in class java.util.ArrayList
Guarantees that this list will have at least enough capacity to hold minCapacity elements.
ensureCapacity(int) - Method in class java.util.Vector
Ensures that minCapacity elements can fit within this Vector.
entrySet() - Method in class java.util.AbstractMap
Returns a set view of the mappings in this Map.
entrySet() - Method in class java.util.HashMap
Returns a "set view" of this HashMap's entries.
entrySet() - Method in class java.util.Hashtable
Returns a "set view" of this Hashtable's entries.
entrySet() - Method in interface java.util.Map
Returns a set view of the mappings in this Map.
enumeration(Collection) - Static method in class java.util.Collections
Returns an Enumeration over a collection.
Enumeration - Interface in java.util
Interface for lists of objects that can be returned in sequence.
equals(Object) - Method in class java.lang.Boolean
If the obj is an instance of Boolean and has the same primitive value as this object then true is returned.
equals(Object) - Method in class java.lang.Byte
Returns true if obj is an instance of Byte and represents the same byte value.
equals(Object) - Method in class java.lang.Character
Determines if an object is equal to this object.
equals(Object) - Method in class java.lang.Double
Returns true if obj is an instance of Double and represents the same double value.
equals(Object) - Method in class java.lang.Float
Returns true if obj is an instance of Float and represents the same float value.
equals(Object) - Method in class java.lang.Integer
Returns true if obj is an instance of Integer and represents the same int value.
equals(Object) - Method in class java.lang.Long
Returns true if obj is an instance of Long and represents the same long value.
equals(Object) - Method in class java.lang.Object
Determine whether this Object is semantically equal to another Object.
equals(Object) - Method in class java.lang.Short
Returns true if obj is an instance of Short and represents the same short value.
equals(Object) - Method in class java.lang.String
Predicate which compares anObject to this.
equals(Object) - Method in class java.util.AbstractList
Test whether this list is equal to another object.
equals(Object) - Method in class java.util.AbstractMap
Compares the specified object with this map for equality.
equals(Object) - Method in class java.util.AbstractSet
Tests whether the given object is equal to this Set.
equals(Object) - Method in interface java.util.Collection
Test whether this collection is equal to some object.
equals(Object) - Method in class java.util.Hashtable
Returns true if this Hashtable equals the supplied Object o.
equals(Object) - Method in interface java.util.List
Test whether this list is equal to another object.
equals(Object) - Method in class java.util.Locale
Compares two locales.
equals(Object) - Method in interface java.util.Map.Entry
Compares the specified object with this entry.
equals(Object) - Method in interface java.util.Map
Compares the specified object with this map for equality.
equals(Object) - Method in interface java.util.Set
Compares the specified object to this for equality.
equals(Object) - Method in class java.util.Vector
Compares this to the given object.
equalsIgnoreCase(String) - Method in class java.lang.String
Compares a String to this String, ignoring case.
err - Static variable in class java.lang.System
 
Error - Error in java.lang
Applications should not try to catch errors since they indicate abnormal conditions.
Error() - Constructor for error java.lang.Error
Create an error without a message.
Error(String) - Constructor for error java.lang.Error
Create an error with a message.
Error(String, Throwable) - Constructor for error java.lang.Error
Create an error with a message and a cause.
Error(Throwable) - Constructor for error java.lang.Error
Create an error with a given cause, and a message of cause == null ? null : cause.toString().
EventListener - Interface in java.util
Empty interface that is implemented by classes that need to receive events.
EventObject - Class in java.util
Represents Events fired by Objects.
EventObject(Object) - Constructor for class java.util.EventObject
Constructs an EventObject with the specified source.
Exception - Exception in java.lang
The root class of all exceptions worth catching in a program.
Exception() - Constructor for exception java.lang.Exception
Create an exception without a message.
Exception(String) - Constructor for exception java.lang.Exception
Create an exception with a message.
Exception(String, Throwable) - Constructor for exception java.lang.Exception
Create an exception with a message and a cause.
Exception(Throwable) - Constructor for exception java.lang.Exception
Create an exception with a given cause, and a message of cause == null ? null : cause.toString().
ExceptionInInitializerError - Error in java.lang
An ExceptionInInitializerError is thrown when an uncaught exception has occurred in a static initializer or the initializer for a static variable.
ExceptionInInitializerError() - Constructor for error java.lang.ExceptionInInitializerError
Create an error without a message.
ExceptionInInitializerError(String) - Constructor for error java.lang.ExceptionInInitializerError
Create an error with a message.
ExceptionInInitializerError(Throwable) - Constructor for error java.lang.ExceptionInInitializerError
Creates an error an saves a reference to the Throwable object.
exit(int) - Static method in class java.lang.System
Terminate the Virtual Machine.
exp(double) - Static method in class java.lang.Math
Take ea.

F

FALSE - Static variable in class java.lang.Boolean
This field is a Boolean object representing the primitive value false.
fill(Object[], Object) - Static method in class java.util.Arrays
Fill an array with an Object value.
fill(Object[], int, int, Object) - Static method in class java.util.Arrays
Fill a range of an array with an Object value.
FilterInputStream - Class in java.io
This is the common superclass of all standard classes that filter input.
FilterInputStream(InputStream) - Constructor for class java.io.FilterInputStream
Create a FilterInputStream with the specified subordinate InputStream.
FilterOutputStream - Class in java.io
This class is the common superclass of output stream classes that filter the output they write.
FilterOutputStream(OutputStream) - Constructor for class java.io.FilterOutputStream
This method initializes an instance of FilterOutputStream to write to the specified subordinate OutputStream.
FINAL - Static variable in class java.lang.reflect.Modifier
Final:
Class: no subclasses allowed. Field: cannot be changed. Method: cannot be overriden.
FINAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
Pf = Punctuation, Final Quote (Informative).
finalize() - Method in class java.lang.Object
Called on an object by the Virtual Machine at most once, at some point after the Object is determined unreachable but before it is destroyed.
firstElement() - Method in class java.util.Vector
Returns the first element (index 0) in the Vector.
Float - Class in java.lang
Instances of class Float represent primitive float values.
Float(float) - Constructor for class java.lang.Float
Create a Float from the primitive float specified.
Float(double) - Constructor for class java.lang.Float
Create a Float from the primitive double specified.
Float(String) - Constructor for class java.lang.Float
Create a Float from the specified String.
floatValue() - Method in class java.lang.Byte
Return the value of this Byte as a float.
floatValue() - Method in class java.lang.Double
Return the value of this Double as a float.
floatValue() - Method in class java.lang.Float
Return the value of this Float.
floatValue() - Method in class java.lang.Integer
Return the value of this Integer as a float.
floatValue() - Method in class java.lang.Long
Return the value of this Long as a float.
floatValue() - Method in class java.lang.Number
Return the value of this Number as a float.
floatValue() - Method in class java.lang.Short
Return the value of this Short as a float.
floor(double) - Static method in class java.lang.Math
Take the nearest integer that is that is less than or equal to the argument.
flush() - Method in class java.io.FilterOutputStream
This method attempt to flush all buffered output to be written to the underlying output sink.
flush() - Method in class java.io.OutputStream
This method forces any data that may have been buffered to be written to the underlying output device.
flush() - Method in class java.io.OutputStreamWriter
This method flushes any buffered bytes to the underlying output sink.
flush() - Method in class java.io.PrintStream
This method flushes any buffered bytes to the underlying stream and then flushes that stream as well.
flush() - Method in class java.io.PrintWriter
This method flushes any buffered chars to the underlying stream and then flushes that stream as well.
flush() - Method in class java.io.Writer
This method forces any data that may have been buffered to be written to the underlying output device.
forDigit(int, int) - Static method in class java.lang.Character
Converts a digit into a character which represents that digit in a specified radix.
FORMAT - Static variable in class java.lang.Character
Cf = Other, Format (Normative).
forName(String) - Static method in class java.lang.Class
Use the classloader of the current class to load, link, and initialize a class.

G

get(int) - Method in class java.util.AbstractList
Returns the elements at the specified position in the list.
get(Object) - Method in class java.util.AbstractMap
Returns the value mapped by the given key.
get(int) - Method in class java.util.ArrayList
Retrieves the element at the user-supplied index.
get(Object) - Method in class java.util.HashMap
Return the value in this HashMap associated with the supplied key, or null if the key maps to nothing.
get(Object) - Method in class java.util.Hashtable
Return the value in this Hashtable associated with the supplied key, or null if the key maps to nothing.
get(int) - Method in interface java.util.List
Get the element at a given index in this list.
get(Object) - Method in interface java.util.Map
Returns the value mapped by the given key.
get(int) - Method in class java.util.Vector
Returns the element at position index.
getBundle(String) - Static method in class java.util.ResourceBundle
Get the appropriate ResourceBundle for the default locale.
getBundle(String, Locale) - Static method in class java.util.ResourceBundle
Get the appropriate ResourceBundle for the given locale.
getBundle(String, Locale, ClassLoader) - Static method in class java.util.ResourceBundle
Get the appropriate ResourceBundle for the given locale.
getBytes() - Method in class java.lang.String
Converts the Unicode characters in this String to a byte array.
getCause() - Method in exception java.lang.ClassNotFoundException
Returns the exception which occurred while loading the class, otherwise returns null.
getCause() - Method in error java.lang.ExceptionInInitializerError
Return the exception that cause this error to be created.
getCause() - Method in class java.lang.Throwable
Returns the cause of this exception, or null if the cause is not known or non-existant.
getChars(int, int, char[], int) - Method in class java.lang.String
Copies characters from this String starting at a specified start index, ending at a specified stop index, to a character array starting at a specified destination begin index.
getChars(int, int, char[], int) - Method in class java.lang.StringBuffer
Get the specified array of characters.
getChars(int, int, char[], int) - Method in class java.lang.StringBuilder
Get the specified array of characters.
getClass() - Method in class java.lang.Object
Returns the runtime Class of this Object.
getClassName() - Method in exception java.util.MissingResourceException
Gets the name of the resource bundle, for which a resource is missing.
getCountry() - Method in class java.util.Locale
Returns the country code of this locale.
getDefault() - Static method in class java.util.Locale
Returns the default Locale.
getException() - Method in exception java.lang.ClassNotFoundException
Returns the exception which occurred while loading the class, otherwise returns null.
getException() - Method in error java.lang.ExceptionInInitializerError
Return the exception that caused this error to be created.
getKey() - Method in interface java.util.Map.Entry
Get the key corresponding to this entry.
getKey() - Method in exception java.util.MissingResourceException
Gets the key of the resource that is missing bundle, this is an empty string if the whole resource bundle is missing.
getKeys() - Method in class java.util.PropertyResourceBundle
This method should return all keys for which a resource exists.
getKeys() - Method in class java.util.ResourceBundle
This method should return all keys for which a resource exists; you should include the enumeration of any parent's keys, after filtering out duplicates.
getLanguage() - Method in class java.util.Locale
Returns the language code of this locale.
getLocale() - Method in class java.util.ResourceBundle
Return the actual locale of this bundle.
getLocalizedMessage() - Method in class java.lang.Throwable
Get a localized version of this Throwable's error message.
getMessage() - Method in class java.lang.Throwable
Get the message associated with this Throwable.
getName() - Method in class java.lang.Class
Get the name of this class, separated by dots for package separators.
getName() - Method in class java.lang.Thread
Get this Thread's name.
getObject(String) - Method in class java.util.ResourceBundle
Get an object from this resource bundle.
getPriority() - Method in class java.lang.Thread
Get this Thread's priority.
getProperty(String) - Static method in class java.lang.System
Get a single system property by name.
getProperty(String, String) - Static method in class java.lang.System
Get a single system property by name.
getProperty(String) - Method in class java.util.Properties
Gets the property with the specified key in this property list.
getResourceAsStream(String) - Method in class java.lang.Class
Get a resource using this class's package using the getClassLoader().getResourceAsStream() method.
getSource() - Method in class java.util.EventObject
Returns the source of the event.
getString(String) - Method in class java.util.ResourceBundle
Get a String from this resource bundle.
getStringArray(String) - Method in class java.util.ResourceBundle
Get an array of Strings from this resource bundle.
getValue() - Method in interface java.util.Map.Entry
Get the value corresponding to this entry.
getVariant() - Method in class java.util.Locale
Returns the variant code of this locale.

H

handleGetObject(String) - Method in class java.util.PropertyResourceBundle
Called by getObject when a resource is needed.
handleGetObject(String) - Method in class java.util.ResourceBundle
Override this method to provide the resource for a keys.
hashCode() - Method in class java.lang.Boolean
Returns the integer 1231 if this object represents the primitive true and the integer 1237 otherwise.
hashCode() - Method in class java.lang.Byte
Return a hashcode representing this Object.
hashCode() - Method in class java.lang.Character
Returns the numerical value (unsigned) of the wrapped character.
hashCode() - Method in class java.lang.Double
Return a hashcode representing this Object.
hashCode() - Method in class java.lang.Float
Return a hashcode representing this Object.
hashCode() - Method in class java.lang.Integer
Return a hashcode representing this Object.
hashCode() - Method in class java.lang.Long
Return a hashcode representing this Object.
hashCode() - Method in class java.lang.Object
Get a value that represents this Object, as uniquely as possible within the confines of an int.
hashCode() - Method in class java.lang.Short
Return a hashcode representing this Object.
hashCode() - Method in class java.lang.String
Computes the hashcode for this String.
hashCode() - Method in class java.util.AbstractList
Obtains a hash code for this list.
hashCode() - Method in class java.util.AbstractMap
Returns the hash code for this map.
hashCode() - Method in class java.util.AbstractSet
Returns a hash code for this Set.
hashCode() - Method in interface java.util.Collection
Obtain a hash code for this collection.
hashCode() - Method in class java.util.Hashtable
Returns the hashCode for this Hashtable.
hashCode() - Method in interface java.util.List
Obtains a hash code for this list.
hashCode() - Method in class java.util.Locale
Return the hash code for this locale.
hashCode() - Method in interface java.util.Map.Entry
Returns the hash code of the entry.
hashCode() - Method in interface java.util.Map
Returns the hash code for this map.
hashCode() - Method in interface java.util.Set
Returns the hash code for this set.
hashCode() - Method in class java.util.Vector
Computes the hashcode of this object.
HashMap - Class in java.util
This class provides a hashtable-backed implementation of the Map interface.
HashMap() - Constructor for class java.util.HashMap
Construct a new HashMap with the default capacity (11) and the default load factor (0.75).
HashMap(Map) - Constructor for class java.util.HashMap
Construct a new HashMap from the given Map, with initial capacity the greater of the size of m or the default of 11.
HashMap(int) - Constructor for class java.util.HashMap
Construct a new HashMap with a specific inital capacity and default load factor of 0.75.
HashMap(int, float) - Constructor for class java.util.HashMap
Construct a new HashMap with a specific inital capacity and load factor.
HashSet - Class in java.util
This class provides a HashMap-backed implementation of the Set interface.
HashSet() - Constructor for class java.util.HashSet
Construct a new, empty HashSet whose backing HashMap has the default capacity (11) and loadFacor (0.75).
HashSet(int) - Constructor for class java.util.HashSet
Construct a new, empty HashSet whose backing HashMap has the supplied capacity and the default load factor (0.75).
HashSet(int, float) - Constructor for class java.util.HashSet
Construct a new, empty HashSet whose backing HashMap has the supplied capacity and load factor.
HashSet(Collection) - Constructor for class java.util.HashSet
Construct a new HashSet with the same elements as are in the supplied collection (eliminating any duplicates, of course).
Hashtable - Class in java.util
A class which implements a hashtable data structure.
Hashtable() - Constructor for class java.util.Hashtable
Construct a new Hashtable with the default capacity (11) and the default load factor (0.75).
Hashtable(Map) - Constructor for class java.util.Hashtable
Construct a new Hashtable from the given Map, with initial capacity the greater of the size of m or the default of 11.
Hashtable(int) - Constructor for class java.util.Hashtable
Construct a new Hashtable with a specific inital capacity and default load factor of 0.75.
Hashtable(int, float) - Constructor for class java.util.Hashtable
Construct a new Hashtable with a specific initial capacity and load factor.
hasMoreElements() - Method in interface java.util.Enumeration
Tests whether there are elements remaining in the enumeration.
hasNext() - Method in interface java.util.Iterator
Tests whether there are elements remaining in the collection.
hasNext() - Method in interface java.util.ListIterator
Tests whether there are elements remaining in the list in the forward direction.
hasPrevious() - Method in interface java.util.ListIterator
Tests whether there are elements remaining in the list in the reverse direction.

I

identityHashCode(Object) - Static method in class java.lang.System
Get a hash code computed by the VM for the Object.
IllegalAccessError - Error in java.lang
An IllegalAccessError is thrown when an attempt is made to call a method, or access or modify a field that the application does not have access to.
IllegalAccessError() - Constructor for error java.lang.IllegalAccessError
Create an error without a message.
IllegalAccessError(String) - Constructor for error java.lang.IllegalAccessError
Create an error with a message.
IllegalAccessException - Exception in java.lang
Thrown whenever a reflective method tries to do something that the compiler would not allow.
IllegalAccessException() - Constructor for exception java.lang.IllegalAccessException
Create an exception without a message.
IllegalAccessException(String) - Constructor for exception java.lang.IllegalAccessException
Create an exception with a message.
IllegalArgumentException - Exception in java.lang
Thrown when a method is passed an illegal or inappropriate argument.
IllegalArgumentException() - Constructor for exception java.lang.IllegalArgumentException
Create an exception without a message.
IllegalArgumentException(String) - Constructor for exception java.lang.IllegalArgumentException
Create an exception with a message.
IllegalArgumentException(String, Throwable) - Constructor for exception java.lang.IllegalArgumentException
Constructs a IllegalArgumentException using the specified error message, which should give further details as to the reason for this exception.
IllegalArgumentException(Throwable) - Constructor for exception java.lang.IllegalArgumentException
Constructs a IllegalArgumentException using the specified cause Throwable, which may be used to provide additional history, with regards to the root of the problem.
IllegalMonitorStateException - Exception in java.lang
Thrown when a thread attempts to wait or notify on a monitor that it does not own (ie.
IllegalMonitorStateException() - Constructor for exception java.lang.IllegalMonitorStateException
Create an exception without a message.
IllegalMonitorStateException(String) - Constructor for exception java.lang.IllegalMonitorStateException
Create an exception with a message.
IllegalStateException - Exception in java.lang
Thrown when a method is invoked at an illegal or inappropriate time.
IllegalStateException() - Constructor for exception java.lang.IllegalStateException
Create an exception without a message.
IllegalStateException(String) - Constructor for exception java.lang.IllegalStateException
Create an exception with a message.
IllegalStateException(String, Throwable) - Constructor for exception java.lang.IllegalStateException
Constructs a IllegalStateException using the specified error message, which should give further details as to the reason for this exception.
IllegalStateException(Throwable) - Constructor for exception java.lang.IllegalStateException
Constructs a IllegalStateException using the specified cause Throwable, which may be used to provide additional history, with regards to the root of the problem.
IllegalThreadStateException - Exception in java.lang
Thrown When trying to manipulate a Thread which is in an inappropriate state.
IllegalThreadStateException() - Constructor for exception java.lang.IllegalThreadStateException
Create an exception without a message.
IllegalThreadStateException(String) - Constructor for exception java.lang.IllegalThreadStateException
Create an exception with a message.
in - Variable in class java.io.FilterInputStream
This is the subordinate InputStream to which method calls are redirected
IncompatibleClassChangeError - Error in java.lang
An IncompatibleClassChangeError is thrown when the definition of a class used by the currently executing method has changed in an incompatible way.
IncompatibleClassChangeError() - Constructor for error java.lang.IncompatibleClassChangeError
Create an error without a message.
IncompatibleClassChangeError(String) - Constructor for error java.lang.IncompatibleClassChangeError
Create an error with a message.
indexOf(int) - Method in class java.lang.String
Finds the first instance of a character in this String.
indexOf(int, int) - Method in class java.lang.String
Finds the first instance of a character in this String, starting at a given index.
indexOf(String) - Method in class java.lang.String
Finds the first instance of a String in this String.
indexOf(String, int) - Method in class java.lang.String
Finds the first instance of a String in this String, starting at a given index.
indexOf(String) - Method in class java.lang.StringBuffer
Finds the first instance of a substring in this StringBuffer.
indexOf(String, int) - Method in class java.lang.StringBuffer
Finds the first instance of a String in this StringBuffer, starting at a given index.
indexOf(String) - Method in class java.lang.StringBuilder
Finds the first instance of a substring in this StringBuilder.
indexOf(String, int) - Method in class java.lang.StringBuilder
Finds the first instance of a String in this StringBuilder, starting at a given index.
indexOf(Object) - Method in class java.util.AbstractList
Obtain the first index at which a given object is to be found in this list.
indexOf(Object) - Method in class java.util.ArrayList
Returns the lowest index at which element appears in this List, or -1 if it does not appear.
indexOf(Object) - Method in interface java.util.List
Obtain the first index at which a given object is to be found in this list.
indexOf(Object) - Method in class java.util.Vector
Returns the first occurrence of elem in the Vector, or -1 if elem is not found.
indexOf(Object, int) - Method in class java.util.Vector
Searches the vector starting at index for object elem and returns the index of the first occurrence of this Object.
IndexOutOfBoundsException - Exception in java.lang
This exception can be thrown to indicate an attempt to access an index which is out of bounds on objects like String, Array, or Vector.
IndexOutOfBoundsException() - Constructor for exception java.lang.IndexOutOfBoundsException
Create an exception without a message.
IndexOutOfBoundsException(String) - Constructor for exception java.lang.IndexOutOfBoundsException
Create an exception with a message.
initCause(Throwable) - Method in class java.lang.Throwable
Initialize the cause of this Throwable.
INITIAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
Pi = Punctuation, Initial Quote (Informative).
InputStream - Class in java.io
This abstract class forms the base of the hierarchy of classes that read input as a stream of bytes.
InputStream() - Constructor for class java.io.InputStream
Default, no-arg, public constructor
InputStreamReader - Class in java.io
This class reads characters from a byte input stream.
InputStreamReader(InputStream) - Constructor for class java.io.InputStreamReader
 
insert(int, char[], int, int) - Method in class java.lang.StringBuffer
Insert a subarray of the char[] argument into this StringBuffer.
insert(int, Object) - Method in class java.lang.StringBuffer
Insert the String value of the argument into this StringBuffer.
insert(int, String) - Method in class java.lang.StringBuffer
Insert the String argument into this StringBuffer.
insert(int, char[]) - Method in class java.lang.StringBuffer
Insert the char[] argument into this StringBuffer.
insert(int, boolean) - Method in class java.lang.StringBuffer
Insert the String value of the argument into this StringBuffer.
insert(int, char) - Method in class java.lang.StringBuffer
Insert the char argument into this StringBuffer.
insert(int, int) - Method in class java.lang.StringBuffer
Insert the String value of the argument into this StringBuffer.
insert(int, long) - Method in class java.lang.StringBuffer
Insert the String value of the argument into this StringBuffer.
insert(int, float) - Method in class java.lang.StringBuffer
Insert the String value of the argument into this StringBuffer.
insert(int, double) - Method in class java.lang.StringBuffer
Insert the String value of the argument into this StringBuffer.
insert(int, char[], int, int) - Method in class java.lang.StringBuilder
Insert a subarray of the char[] argument into this StringBuilder.
insert(int, Object) - Method in class java.lang.StringBuilder
Insert the String value of the argument into this StringBuilder.
insert(int, String) - Method in class java.lang.StringBuilder
Insert the String argument into this StringBuilder.
insert(int, char[]) - Method in class java.lang.StringBuilder
Insert the char[] argument into this StringBuilder.
insert(int, boolean) - Method in class java.lang.StringBuilder
Insert the String value of the argument into this StringBuilder.
insert(int, char) - Method in class java.lang.StringBuilder
Insert the char argument into this StringBuilder.
insert(int, int) - Method in class java.lang.StringBuilder
Insert the String value of the argument into this StringBuilder.
insert(int, long) - Method in class java.lang.StringBuilder
Insert the String value of the argument into this StringBuilder.
insert(int, float) - Method in class java.lang.StringBuilder
Insert the String value of the argument into this StringBuilder.
insert(int, double) - Method in class java.lang.StringBuilder
Insert the String value of the argument into this StringBuilder.
insertElementAt(Object, int) - Method in class java.util.Vector
Inserts a new element into the Vector at index.
InstantiationException - Exception in java.lang
Thrown when an attempt is made to use reflection to build a non-instantiable class (an interface or abstract class).
InstantiationException() - Constructor for exception java.lang.InstantiationException
Create an exception without a message.
InstantiationException(String) - Constructor for exception java.lang.InstantiationException
Create an exception with a message.
Integer - Class in java.lang
Instances of class Integer represent primitive int values.
Integer(int) - Constructor for class java.lang.Integer
Create an Integer object representing the value of the int argument.
Integer(String) - Constructor for class java.lang.Integer
Create an Integer object representing the value of the argument after conversion to an int.
INTERFACE - Static variable in class java.lang.reflect.Modifier
Interface: Class: is an interface.
InternalError - Error in java.lang
An InternalError is thrown when a mystical error has occurred in the Java Virtual Machine.
InternalError() - Constructor for error java.lang.InternalError
Create an error without a message.
InternalError(String) - Constructor for error java.lang.InternalError
Create an error with a message.
InterruptedException - Exception in java.lang
Thrown when a thread interrupts another thread which was previously sleeping, waiting, or paused in some other way.
InterruptedException() - Constructor for exception java.lang.InterruptedException
Create an exception without a message.
InterruptedException(String) - Constructor for exception java.lang.InterruptedException
Create an exception with a message.
intValue() - Method in class java.lang.Byte
Return the value of this Byte as an int.
intValue() - Method in class java.lang.Double
Return the value of this Double as an int.
intValue() - Method in class java.lang.Float
Return the value of this Integer as an int.
intValue() - Method in class java.lang.Integer
Return the value of this Integer.
intValue() - Method in class java.lang.Long
Return the value of this Long as an int.
intValue() - Method in class java.lang.Number
Return the value of this Number as an int.
intValue() - Method in class java.lang.Short
Return the value of this Short as an int.
IOException - Exception in java.io
This exception is thrown to indicate an I/O problem of some sort occurred.
IOException() - Constructor for exception java.io.IOException
Create an exception without a descriptive error message.
IOException(String) - Constructor for exception java.io.IOException
Create an exception with a descriptive error message.
isAbstract(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is abstract.
isAlive() - Method in class java.lang.Thread
Determine whether this Thread is alive.
isDigit(char) - Static method in class java.lang.Character
Determines if a character is a Unicode decimal digit.
isEmpty() - Method in class java.util.AbstractCollection
Test whether this collection is empty.
isEmpty() - Method in class java.util.AbstractMap
Returns true if the map contains no mappings.
isEmpty() - Method in class java.util.ArrayList
Checks if the list is empty.
isEmpty() - Method in interface java.util.Collection
Test whether this collection is empty, that is, if size() == 0.
isEmpty() - Method in class java.util.HashMap
Returns true if there are no key-value mappings currently in this Map.
isEmpty() - Method in class java.util.HashSet
Returns true if this set has no elements in it.
isEmpty() - Method in class java.util.Hashtable
Returns true if there are no key-value mappings currently in this table.
isEmpty() - Method in interface java.util.List
Test whether this list is empty, that is, if size() == 0.
isEmpty() - Method in interface java.util.Map
Returns true if the map contains no mappings.
isEmpty() - Method in interface java.util.Set
Returns true if the set contains no elements.
isEmpty() - Method in class java.util.Vector
Returns true if this Vector is empty, false otherwise
isFinal(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is final.
isInfinite(double) - Static method in class java.lang.Double
Return true if the double has a value equal to either NEGATIVE_INFINITY or POSITIVE_INFINITY, otherwise return false.
isInfinite() - Method in class java.lang.Double
Return true if the value of this Double is the same as NEGATIVE_INFINITY or POSITIVE_INFINITY, otherwise return false.
isInfinite(float) - Static method in class java.lang.Float
Return true if the float has a value equal to either NEGATIVE_INFINITY or POSITIVE_INFINITY, otherwise return false.
isInfinite() - Method in class java.lang.Float
Return true if the value of this Float is the same as NEGATIVE_INFINITY or POSITIVE_INFINITY, otherwise return false.
isInterface(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is an interface.
isLetter(char) - Static method in class java.lang.Character
Determines if a character is a Unicode letter.
isLetterOrDigit(char) - Static method in class java.lang.Character
Determines if a character is a Unicode letter or a Unicode digit.
isLowerCase(char) - Static method in class java.lang.Character
Determines if a character is a Unicode lowercase letter.
isNaN(double) - Static method in class java.lang.Double
Return true if the double has the same value as NaN, otherwise return false.
isNaN() - Method in class java.lang.Double
Return true if the value of this Double is the same as NaN, otherwise return false.
isNaN(float) - Static method in class java.lang.Float
Return true if the float has the same value as NaN, otherwise return false.
isNaN() - Method in class java.lang.Float
Return true if the value of this Float is the same as NaN, otherwise return false.
isNative(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is native.
isPrivate(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is private.
isProtected(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is protected.
isPublic(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is public.
isSpace(char) - Static method in class java.lang.Character
Deprecated. Replaced by Character.isWhitespace(char)
isSpaceChar(char) - Static method in class java.lang.Character
Determines if a character is a Unicode space character.
isStatic(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is static.
isStrict(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is strictfp.
isSynchronized(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is synchronized.
isTransient(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is transient.
isUpperCase(char) - Static method in class java.lang.Character
Determines if a character is a Unicode uppercase letter.
isVolatile(int) - Static method in class java.lang.reflect.Modifier
Check whether the given modifier is volatile.
isWhitespace(char) - Static method in class java.lang.Character
Determines if a character is Java whitespace.
iterator() - Method in class java.util.AbstractCollection
Return an Iterator over this collection.
iterator() - Method in class java.util.AbstractList
Obtain an Iterator over this list, whose sequence is the list order.
iterator() - Method in interface java.util.Collection
Obtain an Iterator over this collection.
iterator() - Method in class java.util.HashSet
Returns an Iterator over the elements of this Set, which visits the elements in no particular order.
Iterator - Interface in java.util
An object which iterates over a collection.
iterator() - Method in interface java.util.List
Obtain an Iterator over this list, whose sequence is the list order.
iterator() - Method in interface java.util.Set
Returns an iterator over the set.

J

java.io - package java.io
 
java.lang - package java.lang
 
java.lang.reflect - package java.lang.reflect
 
java.util - package java.util
 

K

keys() - Method in class java.util.Hashtable
Return an enumeration of the keys of this table.
keySet() - Method in class java.util.AbstractMap
Returns a set view of this map's keys.
keySet() - Method in class java.util.HashMap
Returns a "set view" of this HashMap's keys.
keySet() - Method in class java.util.Hashtable
Returns a "set view" of this Hashtable's keys.
keySet() - Method in interface java.util.Map
Returns a set view of the keys in this Map.

L

lastElement() - Method in class java.util.Vector
Returns the last element in the Vector.
lastIndexOf(int) - Method in class java.lang.String
Finds the last instance of a character in this String.
lastIndexOf(int, int) - Method in class java.lang.String
Finds the last instance of a character in this String, starting at a given index.
lastIndexOf(String) - Method in class java.lang.String
Finds the last instance of a String in this String.
lastIndexOf(String, int) - Method in class java.lang.String
Finds the last instance of a String in this String, starting at a given index.
lastIndexOf(String) - Method in class java.lang.StringBuffer
Finds the last instance of a substring in this StringBuffer.
lastIndexOf(String, int) - Method in class java.lang.StringBuffer
Finds the last instance of a String in this StringBuffer, starting at a given index.
lastIndexOf(String) - Method in class java.lang.StringBuilder
Finds the last instance of a substring in this StringBuilder.
lastIndexOf(String, int) - Method in class java.lang.StringBuilder
Finds the last instance of a String in this StringBuilder, starting at a given index.
lastIndexOf(Object) - Method in class java.util.AbstractList
Obtain the last index at which a given object is to be found in this list.
lastIndexOf(Object) - Method in class java.util.ArrayList
Returns the highest index at which element appears in this List, or -1 if it does not appear.
lastIndexOf(Object) - Method in interface java.util.List
Obtain the last index at which a given object is to be found in this list.
lastIndexOf(Object) - Method in class java.util.Vector
Returns the last index of elem within this Vector, or -1 if the object is not within the Vector.
lastIndexOf(Object, int) - Method in class java.util.Vector
Returns the index of the first occurrence of elem, when searching backwards from index.
length() - Method in class java.lang.String
Returns the number of characters contained in this String.
length() - Method in class java.lang.StringBuffer
Get the length of the String this StringBuffer would create.
length() - Method in class java.lang.StringBuilder
Get the length of the String this StringBuilder would create.
LETTER_NUMBER - Static variable in class java.lang.Character
Nl = Number, Letter (Normative).
LINE_SEPARATOR - Static variable in class java.lang.Character
Zl = Separator, Line (Normative).
LinkageError - Error in java.lang
Subclasses of LinkageError are thrown to indicate that two classes which were compatible at separate compilation times cannot be linked to one another.
LinkageError() - Constructor for error java.lang.LinkageError
Create an error without a message.
LinkageError(String) - Constructor for error java.lang.LinkageError
Create an error with a message.
List - Interface in java.util
An ordered collection (also known as a list).
listIterator() - Method in class java.util.AbstractList
Obtain a ListIterator over this list, starting at the beginning.
listIterator(int) - Method in class java.util.AbstractList
Obtain a ListIterator over this list, starting at a given position.
listIterator() - Method in interface java.util.List
Obtain a ListIterator over this list, starting at the beginning.
listIterator(int) - Method in interface java.util.List
Obtain a ListIterator over this list, starting at a given position.
ListIterator - Interface in java.util
An extended version of Iterator to support the extra features of Lists.
load(InputStream) - Method in class java.util.Properties
Reads a property list from an input stream.
Locale - Class in java.util
Locales represent a specific country and culture.
Locale(String, String, String) - Constructor for class java.util.Locale
Creates a new locale for the given language and country.
Locale(String, String) - Constructor for class java.util.Locale
Creates a new locale for the given language and country.
Locale(String) - Constructor for class java.util.Locale
Creates a new locale for a language.
lock - Variable in class java.io.Reader
This is the Object used for synchronizing critical code sections.
lock - Variable in class java.io.Writer
This is the object used to synchronize criticial code sections for thread safety.
log(double) - Static method in class java.lang.Math
Take ln(a) (the natural log).
Long - Class in java.lang
Instances of class Long represent primitive long values.
Long(long) - Constructor for class java.lang.Long
Create a Long object representing the value of the long argument.
Long(String) - Constructor for class java.lang.Long
Create a Long object representing the value of the argument after conversion to a long.
longValue() - Method in class java.lang.Byte
Return the value of this Byte as a long.
longValue() - Method in class java.lang.Double
Return the value of this Double as a long.
longValue() - Method in class java.lang.Float
Return the value of this Integer as a long.
longValue() - Method in class java.lang.Integer
Return the value of this Integer as a long.
longValue() - Method in class java.lang.Long
Return the value of this Long.
longValue() - Method in class java.lang.Number
Return the value of this Number as a long.
longValue() - Method in class java.lang.Short
Return the value of this Short as a long.
LOWERCASE_LETTER - Static variable in class java.lang.Character
Ll = Letter, Lowercase (Informative).

M

Map - Interface in java.util
An object that maps keys onto values.
Map.Entry - Interface in java.util
A map entry (key-value pair).
mark(int) - Method in class java.io.BufferedInputStream
This method marks a position in the input to which the stream can be "reset" by calling the reset() method.
mark(int) - Method in class java.io.BufferedReader
Mark a position in the input to which the stream can be "reset" by calling the reset() method.
mark(int) - Method in class java.io.FilterInputStream
Calls the in.mark(int) method.
mark(int) - Method in class java.io.InputStream
This method marks a position in the input to which the stream can be "reset" by calling the reset() method.
mark(int) - Method in class java.io.Reader
Marks a position in the input to which the stream can be "reset" by calling the reset() method.
marklimit - Variable in class java.io.BufferedInputStream
This is the maximum number of bytes than can be read after a call to mark() before the mark can be discarded.
markpos - Variable in class java.io.BufferedInputStream
The value of pos when the mark() method was called.
markSupported() - Method in class java.io.BufferedInputStream
This method returns true to indicate that this class supports mark/reset functionality.
markSupported() - Method in class java.io.BufferedReader
Returns true to indicate that this class supports mark/reset functionality.
markSupported() - Method in class java.io.FilterInputStream
Calls the in.markSupported() method.
markSupported() - Method in class java.io.InputStream
This method returns a boolean that indicates whether the mark/reset methods are supported in this class.
markSupported() - Method in class java.io.Reader
Returns a boolean that indicates whether the mark/reset methods are supported in this class.
Math - Class in java.lang
Helper class containing useful mathematical functions and constants.
MATH_SYMBOL - Static variable in class java.lang.Character
Sm = Symbol, Math (Informative).
max(int, int) - Static method in class java.lang.Math
Return whichever argument is larger.
max(long, long) - Static method in class java.lang.Math
Return whichever argument is larger.
max(float, float) - Static method in class java.lang.Math
Return whichever argument is larger.
max(double, double) - Static method in class java.lang.Math
Return whichever argument is larger.
MAX_PRIORITY - Static variable in class java.lang.Thread
The maximum priority for a Thread.
MAX_RADIX - Static variable in class java.lang.Character
Largest value allowed for radix arguments in Java.
MAX_VALUE - Static variable in class java.lang.Byte
The maximum value a byte can represent is 127 (or 27 - 1).
MAX_VALUE - Static variable in class java.lang.Character
The maximum value the char data type can hold.
MAX_VALUE - Static variable in class java.lang.Double
The maximum positive value a double may represent is 1.7976931348623157e+308.
MAX_VALUE - Static variable in class java.lang.Float
The maximum positive value a double may represent is 3.4028235e+38f.
MAX_VALUE - Static variable in class java.lang.Integer
The maximum value an int can represent is 2147483647 (or 231 - 1).
MAX_VALUE - Static variable in class java.lang.Long
The maximum value a long can represent is 9223372036854775807 (or 263 - 1).
MAX_VALUE - Static variable in class java.lang.Short
The minimum value a short can represent is 32767 (or 215).
min(int, int) - Static method in class java.lang.Math
Return whichever argument is smaller.
min(long, long) - Static method in class java.lang.Math
Return whichever argument is smaller.
min(float, float) - Static method in class java.lang.Math
Return whichever argument is smaller.
min(double, double) - Static method in class java.lang.Math
Return whichever argument is smaller.
MIN_PRIORITY - Static variable in class java.lang.Thread
The minimum priority for a Thread.
MIN_RADIX - Static variable in class java.lang.Character
Smallest value allowed for radix arguments in Java.
MIN_VALUE - Static variable in class java.lang.Byte
The minimum value a byte can represent is -128 (or -27).
MIN_VALUE - Static variable in class java.lang.Character
The minimum value the char data type can hold.
MIN_VALUE - Static variable in class java.lang.Double
The minimum positive value a double may represent is 5e-324.
MIN_VALUE - Static variable in class java.lang.Float
The minimum positive value a float may represent is 1.4e-45.
MIN_VALUE - Static variable in class java.lang.Integer
The minimum value an int can represent is -2147483648 (or -231).
MIN_VALUE - Static variable in class java.lang.Long
The minimum value a long can represent is -9223372036854775808L (or -263).
MIN_VALUE - Static variable in class java.lang.Short
The minimum value a short can represent is -32768 (or -215).
MissingResourceException - Exception in java.util
This exception is thrown when a resource is missing.
MissingResourceException(String, String, String) - Constructor for exception java.util.MissingResourceException
Creates a new exception, with the specified parameters.
modCount - Variable in class java.util.AbstractList
A count of the number of structural modifications that have been made to the list (that is, insertions and removals).
Modifier - Class in java.lang.reflect
Modifier is a helper class with static methods to determine whether an int returned from getModifiers() represents static, public, protected, native, final, etc...
Modifier() - Constructor for class java.lang.reflect.Modifier
This constructor really shouldn't be here ...
MODIFIER_LETTER - Static variable in class java.lang.Character
Lm = Letter, Modifier (Informative).
MODIFIER_SYMBOL - Static variable in class java.lang.Character
Sk = Symbol, Modifier (Informative).

N

NaN - Static variable in class java.lang.Double
All IEEE 754 values of NaN have the same value in Java.
NaN - Static variable in class java.lang.Float
All IEEE 754 values of NaN have the same value in Java.
NATIVE - Static variable in class java.lang.reflect.Modifier
Native: Method: use JNI to call this method.
NEGATIVE_INFINITY - Static variable in class java.lang.Double
The value of a double representation -1.0/0.0, negative infinity.
NEGATIVE_INFINITY - Static variable in class java.lang.Float
The value of a float representation -1.0/0.0, negative infinity.
NegativeArraySizeException - Exception in java.lang
Thrown when an attempt is made to create an array with a negative size.
NegativeArraySizeException() - Constructor for exception java.lang.NegativeArraySizeException
Create an exception without a message.
NegativeArraySizeException(String) - Constructor for exception java.lang.NegativeArraySizeException
Create an exception with a message.
newInstance() - Method in class java.lang.Class
Get a new instance of this class by calling the no-argument constructor.
next() - Method in interface java.util.Iterator
Obtain the next element in the collection.
next() - Method in interface java.util.ListIterator
Obtain the next element in the list in the forward direction.
nextElement() - Method in interface java.util.Enumeration
Obtain the next element in the enumeration.
nextIndex() - Method in interface java.util.ListIterator
Find the index of the element that would be returned by a call to next.
NoClassDefFoundError - Error in java.lang
A NoClassDefFoundError is thrown when a classloader or the Java Virtual Machine tries to load a class and no definition of the class can be found.
NoClassDefFoundError() - Constructor for error java.lang.NoClassDefFoundError
Create an error without a message.
NoClassDefFoundError(String) - Constructor for error java.lang.NoClassDefFoundError
Create an error with a message.
NON_SPACING_MARK - Static variable in class java.lang.Character
Mn = Mark, Non-Spacing (Normative).
NORM_PRIORITY - Static variable in class java.lang.Thread
The priority a Thread gets by default.
NoSuchElementException - Exception in java.util
Exception thrown when an attempt is made to access an element that does not exist.
NoSuchElementException() - Constructor for exception java.util.NoSuchElementException
Constructs a NoSuchElementException with no detail message.
NoSuchElementException(String) - Constructor for exception java.util.NoSuchElementException
Constructs a NoSuchElementException with a detail message.
NoSuchFieldError - Error in java.lang
A NoSuchFieldError is thrown if an application attempts to access a field of a class, and that class no longer has that field.
NoSuchFieldError() - Constructor for error java.lang.NoSuchFieldError
Create an error without a message.
NoSuchFieldError(String) - Constructor for error java.lang.NoSuchFieldError
Create an error with a message.
NoSuchMethodError - Error in java.lang
A NoSuchMethodError is thrown if an application attempts to access a method of a class, and that class no longer has that method.
NoSuchMethodError() - Constructor for error java.lang.NoSuchMethodError
Create an error without a message.
NoSuchMethodError(String) - Constructor for error java.lang.NoSuchMethodError
Create an error with a message.
notify() - Method in class java.lang.Object
Wakes up one of the Threads that has called wait on this Object.
notifyAll() - Method in class java.lang.Object
Wakes up all of the Threads that have called wait on this Object.
NullPointerException - Exception in java.lang
Thrown when attempting to use null where an object is required.
NullPointerException() - Constructor for exception java.lang.NullPointerException
Create an exception without a message.
NullPointerException(String) - Constructor for exception java.lang.NullPointerException
Create an exception with a message.
Number - Class in java.lang
Number is a generic superclass of all the numeric classes, including the wrapper classes Byte, Short, Integer, Long, Float, and Double.
Number() - Constructor for class java.lang.Number
The basic constructor (often called implicitly).
NumberFormatException - Exception in java.lang
Can be thrown when attempting to convert a String to one of the numeric types, but the operation fails because the string has the wrong format.
NumberFormatException() - Constructor for exception java.lang.NumberFormatException
Create an exception without a message.
NumberFormatException(String) - Constructor for exception java.lang.NumberFormatException
Create an exception with a message.

O

Object - Class in java.lang
Object is the ultimate superclass of every class (excepting interfaces).
Object() - Constructor for class java.lang.Object
The basic constructor.
OTHER_LETTER - Static variable in class java.lang.Character
Lo = Letter, Other (Informative).
OTHER_NUMBER - Static variable in class java.lang.Character
No = Number, Other (Normative).
OTHER_PUNCTUATION - Static variable in class java.lang.Character
Po = Punctuation, Other (Informative).
OTHER_SYMBOL - Static variable in class java.lang.Character
So = Symbol, Other (Informative).
out - Variable in class java.io.FilterOutputStream
This is the subordinate OutputStream that this class redirects its method calls to.
out - Variable in class java.io.PrintWriter
This is the underlying Writer we are sending output to
out - Static variable in class java.lang.System
 
OutOfMemoryError - Error in java.lang
Thrown when the Java Virtual Machine is unable to allocate an object because it is out of memory and no more memory could be made available by the garbage collector.
OutOfMemoryError() - Constructor for error java.lang.OutOfMemoryError
Create an error without a message.
OutOfMemoryError(String) - Constructor for error java.lang.OutOfMemoryError
Create an error with a message.
OutputStream - Class in java.io
This abstract class forms the base of the hierarchy of classes that write output as a stream of bytes.
OutputStream() - Constructor for class java.io.OutputStream
This is the default no-argument constructor for this class.
OutputStreamWriter - Class in java.io
This class writes characters to an output stream that is byte oriented It converts the chars that are written to bytes using an encoding layer, which is specific to a particular encoding standard.
OutputStreamWriter(OutputStream) - Constructor for class java.io.OutputStreamWriter
 

P

PARAGRAPH_SEPARATOR - Static variable in class java.lang.Character
Zp = Separator, Paragraph (Normative).
parent - Variable in class java.util.ResourceBundle
The parent bundle.
parseByte(String) - Static method in class java.lang.Byte
Converts the specified String into a byte.
parseByte(String, int) - Static method in class java.lang.Byte
Converts the specified String into an int using the specified radix (base).
parseDouble(String) - Static method in class java.lang.Double
Parse the specified String as a double.
parseFloat(String) - Static method in class java.lang.Float
Parse the specified String as a float.
parseInt(String, int) - Static method in class java.lang.Integer
Converts the specified String into an int using the specified radix (base).
parseInt(String) - Static method in class java.lang.Integer
Converts the specified String into an int.
parseLong(String, int) - Static method in class java.lang.Long
Converts the specified String into an int using the specified radix (base).
parseLong(String) - Static method in class java.lang.Long
Converts the specified String into a long.
parseShort(String) - Static method in class java.lang.Short
Converts the specified String into a short.
parseShort(String, int) - Static method in class java.lang.Short
Converts the specified String into a short using the specified radix (base).
PI - Static variable in class java.lang.Math
The most accurate approximation to the mathematical constant pi: 3.141592653589793.
pos - Variable in class java.io.BufferedInputStream
The index of the next character that will by read from the buffer.
POSITIVE_INFINITY - Static variable in class java.lang.Double
The value of a double representing 1.0/0.0, positive infinity.
POSITIVE_INFINITY - Static variable in class java.lang.Float
The value of a float representation 1.0/0.0, positive infinity.
pow(double, double) - Static method in class java.lang.Math
Raise a number to a power.
previous() - Method in interface java.util.ListIterator
Obtain the next element in the list in the reverse direction.
previousIndex() - Method in interface java.util.ListIterator
Find the index of the element that would be returned by a call to previous.
print(String) - Method in class java.io.PrintStream
This method prints a String to the stream.
print(char[]) - Method in class java.io.PrintStream
This method prints an array of characters to the stream.
print(String) - Method in class java.io.PrintWriter
This method prints a String to the stream.
print(char) - Method in class java.io.PrintWriter
This method prints a char to the stream.
print(char[]) - Method in class java.io.PrintWriter
This method prints an array of characters to the stream.
print(boolean) - Method in class java.io.PrintWriter
This methods prints a boolean value to the stream.
print(int) - Method in class java.io.PrintWriter
This method prints an integer to the stream.
print(long) - Method in class java.io.PrintWriter
This method prints a long to the stream.
print(float) - Method in class java.io.PrintWriter
This method prints a float to the stream.
print(double) - Method in class java.io.PrintWriter
This method prints a double to the stream.
print(Object) - Method in class java.io.PrintWriter
This method prints an Object to the stream.
println() - Method in class java.io.PrintStream
This method prints a line separator sequence to the stream.
println(String) - Method in class java.io.PrintStream
This method prints a String to the stream.
println(char[]) - Method in class java.io.PrintStream
This method prints an array of characters to the stream.
println() - Method in class java.io.PrintWriter
This method prints a line separator sequence to the stream.
println(boolean) - Method in class java.io.PrintWriter
This methods prints a boolean value to the stream.
println(int) - Method in class java.io.PrintWriter
This method prints an integer to the stream.
println(long) - Method in class java.io.PrintWriter
This method prints a long to the stream.
println(float) - Method in class java.io.PrintWriter
This method prints a float to the stream.
println(double) - Method in class java.io.PrintWriter
This method prints a double to the stream.
println(Object) - Method in class java.io.PrintWriter
This method prints an Object to the stream.
println(String) - Method in class java.io.PrintWriter
This method prints a String to the stream.
println(char) - Method in class java.io.PrintWriter
This method prints a char to the stream.
println(char[]) - Method in class java.io.PrintWriter
This method prints an array of characters to the stream.
printStackTrace() - Method in class java.lang.Throwable
Print a stack trace to the standard error stream.
printStackTrace(PrintStream) - Method in class java.lang.Throwable
Print a stack trace to the specified PrintStream.
printStackTrace(PrintWriter) - Method in class java.lang.Throwable
Prints the exception, the detailed message and the stack trace associated with this Throwable to the given PrintWriter.
PrintStream - Class in java.io
This class prints Java primitive values and object to a stream as text.
PrintStream(OutputStream) - Constructor for class java.io.PrintStream
This method intializes a new PrintStream object to write to the specified output sink.
PrintStream(OutputStream, boolean) - Constructor for class java.io.PrintStream
This method intializes a new PrintStream object to write to the specified output sink.
PrintWriter - Class in java.io
This class prints Java primitive values and objects to a stream as text.
PrintWriter(Writer) - Constructor for class java.io.PrintWriter
This method intializes a new PrintWriter object to write to the specified output sink.
PrintWriter(Writer, boolean) - Constructor for class java.io.PrintWriter
This method intializes a new PrintWriter object to write to the specified output sink.
PrintWriter(OutputStream) - Constructor for class java.io.PrintWriter
This method initializes a new PrintWriter object to write to the specified OutputStream.
PrintWriter(OutputStream, boolean) - Constructor for class java.io.PrintWriter
This method initializes a new PrintWriter object to write to the specified OutputStream.
PRIVATE - Static variable in class java.lang.reflect.Modifier
Private: accessible only from the same enclosing class.
PRIVATE_USE - Static variable in class java.lang.Character
Co = Other, Private Use (Normative).
Properties - Class in java.util
A set of persistent properties, which can be saved or loaded from a stream.
Properties() - Constructor for class java.util.Properties
Creates a new empty property list with no default values.
Properties(Properties) - Constructor for class java.util.Properties
Create a new empty property list with the specified default values.
propertyNames() - Method in class java.util.Properties
Returns an enumeration of all keys in this property list, including the keys in the default property list.
PropertyResourceBundle - Class in java.util
This class is a concrete ResourceBundle that gets it resources from a property file.
PropertyResourceBundle(InputStream) - Constructor for class java.util.PropertyResourceBundle
Creates a new property resource bundle.
PROTECTED - Static variable in class java.lang.reflect.Modifier
Protected: accessible only to subclasses, or within the package.
PUBLIC - Static variable in class java.lang.reflect.Modifier
Public: accessible from any other class.
put(Object, Object) - Method in class java.util.AbstractMap
Associates the given key to the given value (optional operation).
put(Object, Object) - Method in class java.util.HashMap
Puts the supplied value into the Map, mapped by the supplied key.
put(Object, Object) - Method in class java.util.Hashtable
Puts the supplied value into the Map, mapped by the supplied key.
put(Object, Object) - Method in interface java.util.Map
Associates the given key to the given value (optional operation).
putAll(Map) - Method in class java.util.AbstractMap
Copies all entries of the given map to this one (optional operation).
putAll(Map) - Method in class java.util.HashMap
Copies all elements of the given map into this hashtable.
putAll(Map) - Method in class java.util.Hashtable
Copies all elements of the given map into this hashtable.
putAll(Map) - Method in interface java.util.Map
Copies all entries of the given map to this one (optional operation).

R

random() - Static method in class java.lang.Math
Get a random number.
read() - Method in class java.io.BufferedInputStream
This method reads an unsigned byte from the input stream and returns it as an int in the range of 0-255.
read(byte[], int, int) - Method in class java.io.BufferedInputStream
This method reads bytes from a stream and stores them into a caller supplied buffer.
read(char[], int, int) - Method in class java.io.BufferedReader
This method read chars from a stream and stores them into a caller supplied buffer.
read() - Method in class java.io.BufferedReader
 
read() - Method in class java.io.FilterInputStream
Calls the in.read() method
read(byte[]) - Method in class java.io.FilterInputStream
Calls the read(byte[], int, int) overloaded method.
read(byte[], int, int) - Method in class java.io.FilterInputStream
Calls the in.read(byte[], int, int) method.
read() - Method in class java.io.InputStream
This method reads an unsigned byte from the input stream and returns it as an int in the range of 0-255.
read(byte[]) - Method in class java.io.InputStream
This method reads bytes from a stream and stores them into a caller supplied buffer.
read(byte[], int, int) - Method in class java.io.InputStream
This method read bytes from a stream and stores them into a caller supplied buffer.
read(char[], int, int) - Method in class java.io.InputStreamReader
This method reads up to length characters from the stream into the specified array starting at index offset into the array.
read() - Method in class java.io.InputStreamReader
This method reads a single character of data from the stream.
read(char[], int, int) - Method in class java.io.Reader
Read chars from a stream and stores them into a caller supplied buffer.
read(char[]) - Method in class java.io.Reader
Reads chars from a stream and stores them into a caller supplied buffer.
read() - Method in class java.io.Reader
Reads an char from the input stream and returns it as an int in the range of 0-65535.
Reader - Class in java.io
This abstract class forms the base of the hierarchy of classes that read input as a stream of characters.
Reader() - Constructor for class java.io.Reader
Unitializes a Reader that will use the object itself for synchronization of critical code sections.
Reader(Object) - Constructor for class java.io.Reader
Initializes a Reader that will use the specified Object for synchronization of critical code sections.
readLine() - Method in class java.io.BufferedReader
This method reads a single line of text from the input stream, returning it as a String.
ready() - Method in class java.io.BufferedReader
This method determines whether or not a stream is ready to be read.
ready() - Method in class java.io.InputStreamReader
This method checks to see if the stream is read to be read.
ready() - Method in class java.io.Reader
Determines whether or not this stream is ready to be read.
regionMatches(int, String, int, int) - Method in class java.lang.String
Predicate which determines if this String matches another String starting at a specified offset for each String and continuing for a specified length.
regionMatches(boolean, int, String, int, int) - Method in class java.lang.String
Predicate which determines if this String matches another String starting at a specified offset for each String and continuing for a specified length, optionally ignoring case.
rehash() - Method in class java.util.Hashtable
Increases the size of the Hashtable and rehashes all keys to new array indices; this is called when the addition of a new value would cause size() > threshold.
remove(Object) - Method in class java.util.AbstractCollection
Remove a single instance of an object from this collection (optional operation).
remove(int) - Method in class java.util.AbstractList
Remove the element at a given position in this list (optional operation).
remove(Object) - Method in class java.util.AbstractMap
Removes the mapping for this key if present (optional operation).
remove(int) - Method in class java.util.ArrayList
Removes the element at the user-supplied index.
remove(Object) - Method in interface java.util.Collection
Remove a single occurrence of an object from this collection.
remove(Object) - Method in class java.util.HashMap
Removes from the HashMap and returns the value which is mapped by the supplied key.
remove(Object) - Method in class java.util.HashSet
Removes the supplied Object from this Set if it is in the Set.
remove(Object) - Method in class java.util.Hashtable
Removes from the table and returns the value which is mapped by the supplied key.
remove() - Method in interface java.util.Iterator
Remove from the underlying collection the last element returned by next (optional operation).
remove(int) - Method in interface java.util.List
Remove the element at a given position in this list (optional operation).
remove(Object) - Method in interface java.util.List
Remove the first occurence of an object from this list (optional operation).
remove() - Method in interface java.util.ListIterator
Remove from the list the element last returned by a call to next or previous (optional operation).
remove(Object) - Method in interface java.util.Map
Removes the mapping for this key if present (optional operation).
remove(Object) - Method in interface java.util.Set
Removes the specified element from this set (optional operation).
remove(Object) - Method in class java.util.Vector
Removes the given Object from the Vector.
remove(int) - Method in class java.util.Vector
Removes the element at the specified index, and returns it.
removeAll(Collection) - Method in class java.util.AbstractCollection
Remove from this collection all its elements that are contained in a given collection (optional operation).
removeAll(Collection) - Method in class java.util.AbstractSet
Removes from this set all elements in the given collection (optional operation).
removeAll(Collection) - Method in interface java.util.Collection
Remove all elements of a given collection from this collection.
removeAll(Collection) - Method in interface java.util.List
Remove all elements of a given collection from this list (optional operation).
removeAll(Collection) - Method in interface java.util.Set
Removes from this set all elements contained in the specified collection (optional operation).
removeAll(Collection) - Method in class java.util.Vector
Remove from this vector all elements contained in the given collection.
removeAllElements() - Method in class java.util.Vector
Removes all elements from the Vector.
removeElement(Object) - Method in class java.util.Vector
Removes the first (the lowestindex) occurance of the given object from the Vector.
removeElementAt(int) - Method in class java.util.Vector
Removes the element at index, and shifts all elements at positions greater than index to their index - 1.
removeRange(int, int) - Method in class java.util.AbstractList
Remove a subsection of the list.
removeRange(int, int) - Method in class java.util.ArrayList
Removes all elements in the half-open interval [fromIndex, toIndex).
removeRange(int, int) - Method in class java.util.Vector
Removes a range of elements from this list.
replace(char, char) - Method in class java.lang.String
Replaces every instance of a character in this String with a new character.
replace(int, int, String) - Method in class java.lang.StringBuffer
Replace characters between index start (inclusive) and end (exclusive) with str.
replace(int, int, String) - Method in class java.lang.StringBuilder
Replace characters between index start (inclusive) and end (exclusive) with str.
reset() - Method in class java.io.BufferedInputStream
This method resets a stream to the point where the mark() method was called.
reset() - Method in class java.io.BufferedReader
Reset the stream to the point where the mark() method was called.
reset() - Method in class java.io.ByteArrayOutputStream
This method discards all of the bytes that have been written to the internal buffer so far by setting the count variable to 0.
reset() - Method in class java.io.FilterInputStream
Calls the in.reset() method.
reset() - Method in class java.io.InputStream
This method resets a stream to the point where the mark() method was called.
reset() - Method in class java.io.Reader
Resets a stream to the point where the mark() method was called.
ResourceBundle - Class in java.util
A resource bundle contains locale-specific data.
ResourceBundle() - Constructor for class java.util.ResourceBundle
The constructor.
retainAll(Collection) - Method in class java.util.AbstractCollection
Remove from this collection all its elements that are not contained in a given collection (optional operation).
retainAll(Collection) - Method in interface java.util.Collection
Remove all elements of this collection that are not contained in a given collection.
retainAll(Collection) - Method in interface java.util.List
Remove all elements of this list that are not contained in a given collection (optional operation).
retainAll(Collection) - Method in interface java.util.Set
Retains only the elements in this set that are also in the specified collection (optional operation).
retainAll(Collection) - Method in class java.util.Vector
Retain in this vector only the elements contained in the given collection.
reverse() - Method in class java.lang.StringBuffer
Reverse the characters in this StringBuffer.
reverse() - Method in class java.lang.StringBuilder
Reverse the characters in this StringBuilder.
reverseBytes(char) - Static method in class java.lang.Character
Reverse the bytes in val.
reverseBytes(short) - Static method in class java.lang.Short
Reverse the bytes in val.
rint(double) - Static method in class java.lang.Math
Take the nearest integer to the argument.
round(float) - Static method in class java.lang.Math
Take the nearest integer to the argument.
round(double) - Static method in class java.lang.Math
Take the nearest long to the argument.
run() - Method in interface java.lang.Runnable
This method will be called by whoever wishes to run your class implementing Runnable.
run() - Method in class java.lang.Thread
The method of Thread that will be run if there is no Runnable object associated with the Thread.
Runnable - Interface in java.lang
Runnable is an interface you implement to indicate that your class can be executed as the main part of a Thread, among other places.
RuntimeException - Exception in java.lang
All exceptions which are subclasses of RuntimeException can be thrown at any time during the execution of a Java virtual machine.
RuntimeException() - Constructor for exception java.lang.RuntimeException
Create an exception without a message.
RuntimeException(String) - Constructor for exception java.lang.RuntimeException
Create an exception with a message.
RuntimeException(String, Throwable) - Constructor for exception java.lang.RuntimeException
Create an exception with a message and a cause.
RuntimeException(Throwable) - Constructor for exception java.lang.RuntimeException
Create an exception with the given cause, and a message of cause == null ? null : cause.toString().

S

Serializable - Interface in java.io
This interface has no methods.
set(int, Object) - Method in class java.util.AbstractList
Replace an element of this list with another object (optional operation).
set(int, Object) - Method in class java.util.ArrayList
Sets the element at the specified index.
set(int, Object) - Method in interface java.util.List
Replace an element of this list with another object (optional operation).
set(Object) - Method in interface java.util.ListIterator
Replace the element last returned by a call to next or previous with a given object (optional operation).
Set - Interface in java.util
A collection that contains no duplicates.
set(int, Object) - Method in class java.util.Vector
Puts element into the Vector at position index and returns the Object that previously occupied that position.
setCharAt(int, char) - Method in class java.lang.StringBuffer
Set the character at the specified index.
setCharAt(int, char) - Method in class java.lang.StringBuilder
Set the character at the specified index.
setElementAt(Object, int) - Method in class java.util.Vector
Changes the element at index to be obj
setError() - Method in class java.io.PrintStream
This method can be called by subclasses to indicate that an error has occurred and should be reported by checkError.
setError() - Method in class java.io.PrintWriter
This method can be called by subclasses to indicate that an error has occurred and should be reported by checkError.
setLength(int) - Method in class java.lang.StringBuffer
Set the length of this StringBuffer.
setLength(int) - Method in class java.lang.StringBuilder
Set the length of this StringBuilder.
setName(String) - Method in class java.lang.Thread
Set this Thread's name.
setParent(ResourceBundle) - Method in class java.util.ResourceBundle
Set the parent of this bundle.
setPriority(int) - Method in class java.lang.Thread
Set this Thread's priority.
setProperty(String, String) - Method in class java.util.Properties
Adds the given key/value pair to this properties.
setSize(int) - Method in class java.util.Vector
Explicitly sets the size of the vector (but not necessarily the size of the internal data array).
setValue(Object) - Method in interface java.util.Map.Entry
Replaces the value with the specified object (optional operation).
Short - Class in java.lang
Instances of class Short represent primitive short values.
Short(short) - Constructor for class java.lang.Short
Create a Short object representing the value of the short argument.
Short(String) - Constructor for class java.lang.Short
Create a Short object representing the value of the argument after conversion to a short.
shortValue() - Method in class java.lang.Byte
Return the value of this Byte as a short.
shortValue() - Method in class java.lang.Double
Return the value of this Double as a short.
shortValue() - Method in class java.lang.Float
Return the value of this Float as a short.
shortValue() - Method in class java.lang.Integer
Return the value of this Integer as a short.
shortValue() - Method in class java.lang.Long
Return the value of this Long as a short.
shortValue() - Method in class java.lang.Number
Return the value of this Number as a short.
shortValue() - Method in class java.lang.Short
Return the value of this Short.
sin(double) - Static method in class java.lang.Math
The trigonometric function sin.
size() - Method in class java.io.ByteArrayOutputStream
This method returns the number of bytes that have been written to the buffer so far.
SIZE - Static variable in class java.lang.Byte
The number of bits needed to represent a byte.
SIZE - Static variable in class java.lang.Character
The number of bits needed to represent a char.
SIZE - Static variable in class java.lang.Double
The number of bits needed to represent a double.
SIZE - Static variable in class java.lang.Float
The number of bits needed to represent a float.
SIZE - Static variable in class java.lang.Integer
The number of bits needed to represent an int.
SIZE - Static variable in class java.lang.Long
The number of bits needed to represent a long.
SIZE - Static variable in class java.lang.Short
The number of bits needed to represent a short.
size() - Method in class java.util.AbstractCollection
Return the number of elements in this collection.
size() - Method in class java.util.AbstractMap
Returns the number of key-value mappings in the map.
size() - Method in class java.util.ArrayList
Returns the number of elements in this list.
size() - Method in interface java.util.Collection
Get the number of elements in this collection.
size() - Method in class java.util.HashMap
Returns the number of kay-value mappings currently in this Map.
size() - Method in class java.util.HashSet
Returns the number of elements in this Set (its cardinality).
size() - Method in class java.util.Hashtable
Returns the number of key-value mappings currently in this hashtable.
size() - Method in interface java.util.List
Get the number of elements in this list.
size() - Method in interface java.util.Map
Returns the number of key-value mappings in the map.
size() - Method in interface java.util.Set
Returns the number of elements in the set.
size() - Method in class java.util.Vector
Returns the number of elements stored in this Vector.
skip(long) - Method in class java.io.BufferedInputStream
This method skips the specified number of bytes in the stream.
skip(long) - Method in class java.io.BufferedReader
This method skips the specified number of chars in the stream.
skip(long) - Method in class java.io.FilterInputStream
Calls the in.skip(long) method
skip(long) - Method in class java.io.InputStream
This method skips the specified number of bytes in the stream.
skip(long) - Method in class java.io.Reader
Skips the specified number of chars in the stream.
sleep(long) - Static method in class java.lang.Thread
Suspend the current Thread's execution for the specified amount of time.
sleep(long, int) - Static method in class java.lang.Thread
Suspend the current Thread's execution for the specified amount of time.
source - Variable in class java.util.EventObject
The source object; in other words, the object which this event takes place on.
SPACE_SEPARATOR - Static variable in class java.lang.Character
Zs = Separator, Space (Normative).
sqrt(double) - Static method in class java.lang.Math
Take a square root.
start() - Method in class java.lang.Thread
Start this Thread, calling the run() method of the Runnable this Thread was created with, or else the run() method of the Thread itself.
START_PUNCTUATION - Static variable in class java.lang.Character
Ps = Punctuation, Open (Informative).
startsWith(String, int) - Method in class java.lang.String
Predicate which determines if this String contains the given prefix, beginning comparison at toffset.
startsWith(String) - Method in class java.lang.String
Predicate which determines if this String starts with a given prefix.
STATIC - Static variable in class java.lang.reflect.Modifier
Static:
Class: no enclosing instance for nested class. Field or Method: can be accessed or invoked without an instance of the declaring class.
STRICT - Static variable in class java.lang.reflect.Modifier
Strictfp: Method: expressions are FP-strict.
String - Class in java.lang
Strings represent an immutable set of characters.
String() - Constructor for class java.lang.String
Creates an empty String (length 0).
String(String) - Constructor for class java.lang.String
Copies the contents of a String to a new String.
String(char[]) - Constructor for class java.lang.String
Creates a new String using the character sequence of the char array.
String(char[], int, int) - Constructor for class java.lang.String
Creates a new String using the character sequence of a subarray of characters.
String(byte[], int, int, int) - Constructor for class java.lang.String
Deprecated. use #String(byte[], int, int, String) to perform correct encoding
String(byte[], int) - Constructor for class java.lang.String
Deprecated. use #String(byte[], String) to perform correct encoding
String(byte[], int, int) - Constructor for class java.lang.String
Creates a new String using the portion of the byte array starting at the offset and ending at offset + count.
String(byte[]) - Constructor for class java.lang.String
Creates a new String using the byte array.
String(StringBuffer) - Constructor for class java.lang.String
Creates a new String using the character sequence represented by the StringBuffer.
String(StringBuilder) - Constructor for class java.lang.String
Creates a new String using the character sequence represented by the StringBuilder.
StringBuffer - Class in java.lang
StringBuffer represents a changeable String.
StringBuffer() - Constructor for class java.lang.StringBuffer
Create a new StringBuffer with default capacity 16.
StringBuffer(int) - Constructor for class java.lang.StringBuffer
Create an empty StringBuffer with the specified initial capacity.
StringBuffer(String) - Constructor for class java.lang.StringBuffer
Create a new StringBuffer with the characters in the specified String.
StringBuilder - Class in java.lang
StringBuilder represents a changeable String.
StringBuilder() - Constructor for class java.lang.StringBuilder
Create a new StringBuilder with default capacity 16.
StringBuilder(int) - Constructor for class java.lang.StringBuilder
Create an empty StringBuilder with the specified initial capacity.
StringBuilder(String) - Constructor for class java.lang.StringBuilder
Create a new StringBuilder with the characters in the specified String.
StringIndexOutOfBoundsException - Exception in java.lang
This exception can be thrown to indicate an attempt to access an index which is out of bounds of a String.
StringIndexOutOfBoundsException() - Constructor for exception java.lang.StringIndexOutOfBoundsException
Create an exception without a message.
StringIndexOutOfBoundsException(String) - Constructor for exception java.lang.StringIndexOutOfBoundsException
Create an exception with a message.
StringIndexOutOfBoundsException(int) - Constructor for exception java.lang.StringIndexOutOfBoundsException
Create an exception noting the illegal index.
subList(int, int) - Method in class java.util.AbstractList
Obtain a List view of a subsection of this list, from fromIndex (inclusive) to toIndex (exclusive).
subList(int, int) - Method in interface java.util.List
Obtain a List view of a subsection of this list, from fromIndex (inclusive) to toIndex (exclusive).
subList(int, int) - Method in class java.util.Vector
Obtain a List view of a subsection of this list, from fromIndex (inclusive) to toIndex (exclusive).
substring(int) - Method in class java.lang.String
Creates a substring of this String, starting at a specified index and ending at the end of this String.
substring(int, int) - Method in class java.lang.String
Creates a substring of this String, starting at a specified index and ending at one character before a specified index.
substring(int) - Method in class java.lang.StringBuffer
Creates a substring of this StringBuffer, starting at a specified index and ending at the end of this StringBuffer.
substring(int, int) - Method in class java.lang.StringBuffer
Creates a substring of this StringBuffer, starting at a specified index and ending at one character before a specified index.
substring(int) - Method in class java.lang.StringBuilder
Creates a substring of this StringBuilder, starting at a specified index and ending at the end of this StringBuilder.
substring(int, int) - Method in class java.lang.StringBuilder
Creates a substring of this StringBuilder, starting at a specified index and ending at one character before a specified index.
SURROGATE - Static variable in class java.lang.Character
Cs = Other, Surrogate (Normative).
SYNCHRONIZED - Static variable in class java.lang.reflect.Modifier
Synchronized: Method: lock the class while calling this method.
synchronizedCollection(Collection) - Static method in class java.util.Collections
Returns a synchronized (thread-safe) collection wrapper backed by the given collection.
synchronizedList(List) - Static method in class java.util.Collections
Returns a synchronized (thread-safe) list wrapper backed by the given list.
synchronizedMap(Map) - Static method in class java.util.Collections
Returns a synchronized (thread-safe) map wrapper backed by the given map.
synchronizedSet(Set) - Static method in class java.util.Collections
Returns a synchronized (thread-safe) set wrapper backed by the given set.
System - Class in java.lang
System represents system-wide resources; things that represent the general environment.

T

tan(double) - Static method in class java.lang.Math
The trigonometric function tan.
Thread - Class in java.lang
Thread represents a single thread of execution in the VM.
Thread() - Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(Runnable) - Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(String) - Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(Runnable, String) - Constructor for class java.lang.Thread
Allocates a new Thread object.
Throwable - Class in java.lang
Throwable is the superclass of all exceptions that can be raised.
Throwable() - Constructor for class java.lang.Throwable
Instantiate this Throwable with an empty message.
Throwable(String) - Constructor for class java.lang.Throwable
Instantiate this Throwable with the given message.
Throwable(String, Throwable) - Constructor for class java.lang.Throwable
Instantiate this Throwable with the given message and cause.
Throwable(Throwable) - Constructor for class java.lang.Throwable
Instantiate this Throwable with the given cause.
TITLECASE_LETTER - Static variable in class java.lang.Character
Lt = Letter, Titlecase (Informative).
toArray() - Method in class java.util.AbstractCollection
Return an array containing the elements of this collection.
toArray(Object[]) - Method in class java.util.AbstractCollection
Copy the collection into a given array if it will fit, or into a dynamically created array of the same run-time type as the given array if not.
toArray() - Method in class java.util.ArrayList
Returns an Object array containing all of the elements in this ArrayList.
toArray(Object[]) - Method in class java.util.ArrayList
Returns an Array whose component type is the runtime component type of the passed-in Array.
toArray() - Method in interface java.util.Collection
Copy the current contents of this collection into an array.
toArray(Object[]) - Method in interface java.util.Collection
Copy the current contents of this collection into an array.
toArray() - Method in interface java.util.List
Copy the current contents of this list into an array.
toArray(Object[]) - Method in interface java.util.List
Copy the current contents of this list into an array.
toArray() - Method in interface java.util.Set
Returns an array containing the elements of this set.
toArray(Object[]) - Method in interface java.util.Set
Returns an array containing the elements of this set, of the same runtime type of the argument.
toArray() - Method in class java.util.Vector
Returns an Object array with the contents of this Vector, in the order they are stored within this Vector.
toArray(Object[]) - Method in class java.util.Vector
Returns an array containing the contents of this Vector.
toBinaryString(int) - Static method in class java.lang.Integer
Converts the int to a String assuming it is unsigned in base 2.
toBinaryString(long) - Static method in class java.lang.Long
Converts the long to a String assuming it is unsigned in base 2.
toByteArray() - Method in class java.io.ByteArrayOutputStream
This method returns a byte array containing the bytes that have been written to this stream so far.
toCharArray() - Method in class java.lang.String
Copies the contents of this String into a character array.
toDegrees(double) - Static method in class java.lang.Math
Convert from radians to degrees.
toHexString(int) - Static method in class java.lang.Integer
Converts the int to a String assuming it is unsigned in base 16.
toHexString(long) - Static method in class java.lang.Long
Converts the long to a String assuming it is unsigned in base 16.
toLowerCase(char) - Static method in class java.lang.Character
Converts a Unicode character into its lowercase equivalent mapping.
toLowerCase(Locale) - Method in class java.lang.String
Lowercases this String according to a particular locale.
toLowerCase() - Method in class java.lang.String
Lowercases this String.
toOctalString(int) - Static method in class java.lang.Integer
Converts the int to a String assuming it is unsigned in base 8.
toOctalString(long) - Static method in class java.lang.Long
Converts the long to a String assuming it is unsigned in base 8.
toRadians(double) - Static method in class java.lang.Math
Convert from degrees to radians.
toString() - Method in class java.io.ByteArrayOutputStream
Returns the bytes in the internal array as a String.
toString(boolean) - Static method in class java.lang.Boolean
Returns "true" if the value of the give boolean is true and returns "false" if the value of the given boolean is false.
toString() - Method in class java.lang.Boolean
Returns "true" if the value of this object is true and returns "false" if the value of this object is false.
toString(byte) - Static method in class java.lang.Byte
Converts the byte to a String and assumes a radix of 10.
toString() - Method in class java.lang.Byte
Converts the Byte value to a String and assumes a radix of 10.
toString() - Method in class java.lang.Character
Converts the wrapped character into a String.
toString(char) - Static method in class java.lang.Character
Returns a String of length 1 representing the specified character.
toString(double) - Static method in class java.lang.Double
Convert the double to a String.
toString() - Method in class java.lang.Double
Convert the double value of this Double to a String.
toString(float) - Static method in class java.lang.Float
Convert the float to a String.
toString() - Method in class java.lang.Float
Convert the float value of this Float to a String.
toString(int, int) - Static method in class java.lang.Integer
Converts the int to a String using the specified radix (base).
toString(int) - Static method in class java.lang.Integer
Converts the int to a String and assumes a radix of 10.
toString() - Method in class java.lang.Integer
Converts the Integer value to a String and assumes a radix of 10.
toString(long, int) - Static method in class java.lang.Long
Converts the long to a String using the specified radix (base).
toString(long) - Static method in class java.lang.Long
Converts the long to a String and assumes a radix of 10.
toString() - Method in class java.lang.Long
Converts the Long value to a String and assumes a radix of 10.
toString() - Method in class java.lang.Object
Convert this Object to a human-readable String.
toString(int) - Static method in class java.lang.reflect.Modifier
Get a string representation of all the modifiers represented by the given int.
toString(short) - Static method in class java.lang.Short
Converts the short to a String and assumes a radix of 10.
toString() - Method in class java.lang.Short
Converts the Short value to a String and assumes a radix of 10.
toString() - Method in class java.lang.String
Returns this, as it is already a String!
toString() - Method in class java.lang.StringBuffer
Convert this StringBuffer to a String.
toString() - Method in class java.lang.StringBuilder
Convert this StringBuilder to a String.
toString() - Method in class java.lang.Thread
Returns a string representation of this thread, including the thread's name, priority, and thread group.
toString() - Method in class java.lang.Throwable
Get a human-readable representation of this Throwable.
toString() - Method in class java.util.AbstractCollection
Creates a String representation of the Collection.
toString() - Method in class java.util.AbstractMap
Returns a String representation of this map.
toString() - Method in class java.util.EventObject
Converts the event to a String.
toString() - Method in class java.util.Hashtable
Converts this Hashtable to a String, surrounded by braces, and with key/value pairs listed with an equals sign between, separated by a comma and space.
toString() - Method in class java.util.Locale
Gets the string representation of the current locale.
toString() - Method in class java.util.Vector
Returns a string representation of this Vector in the form "[element0, element1, ...
toUpperCase(char) - Static method in class java.lang.Character
Converts a Unicode character into its uppercase equivalent mapping.
toUpperCase(Locale) - Method in class java.lang.String
Uppercases this String according to a particular locale.
toUpperCase() - Method in class java.lang.String
Uppercases this String.
TRANSIENT - Static variable in class java.lang.reflect.Modifier
Transient: Field: not serialized or deserialized.
trim() - Method in class java.lang.String
Trims all characters less than or equal to ' ' (' ') from the beginning and end of this String.
trimToSize() - Method in class java.util.ArrayList
Trims the capacity of this List to be equal to its size; a memory saver.
trimToSize() - Method in class java.util.Vector
Trims the Vector down to size.
TRUE - Static variable in class java.lang.Boolean
This field is a Boolean object representing the primitive value true.
TYPE - Static variable in class java.lang.Boolean
The primitive type boolean is represented by this Class object.
TYPE - Static variable in class java.lang.Byte
The primitive type byte is represented by this Class object.
TYPE - Static variable in class java.lang.Character
Class object representing the primitive char data type.
TYPE - Static variable in class java.lang.Double
The primitive type double is represented by this Class object.
TYPE - Static variable in class java.lang.Float
The primitive type float is represented by this Class object.
TYPE - Static variable in class java.lang.Integer
The primitive type int is represented by this Class object.
TYPE - Static variable in class java.lang.Long
The primitive type long is represented by this Class object.
TYPE - Static variable in class java.lang.Short
The primitive type short is represented by this Class object.

U

UNASSIGNED - Static variable in class java.lang.Character
Cn = Other, Not Assigned (Normative).
UnsatisfiedLinkError - Error in java.lang
A UnsatisfiedLinkError is thrown if an appropriate native language definition of a method declared native cannot be found by the Java Virtual Machine.
UnsatisfiedLinkError() - Constructor for error java.lang.UnsatisfiedLinkError
Create an error without a message.
UnsatisfiedLinkError(String) - Constructor for error java.lang.UnsatisfiedLinkError
Create an error with a message.
UnsupportedOperationException - Exception in java.lang
This exception is thrown by an object when an operation is requested of it that it does not support.
UnsupportedOperationException() - Constructor for exception java.lang.UnsupportedOperationException
Create an exception without a message.
UnsupportedOperationException(String) - Constructor for exception java.lang.UnsupportedOperationException
Create an exception with a message.
UnsupportedOperationException(String, Throwable) - Constructor for exception java.lang.UnsupportedOperationException
Constructs a UnsupportedOperationException using the specified error message, which should give further details as to the reason for this exception.
UnsupportedOperationException(Throwable) - Constructor for exception java.lang.UnsupportedOperationException
Constructs a UnsupportedOperationException using the specified cause Throwable, which may be used to provide additional history, with regards to the root of the problem.
UPPERCASE_LETTER - Static variable in class java.lang.Character
Lu = Letter, Uppercase (Informative).

V

valueOf(boolean) - Static method in class java.lang.Boolean
Returns the Boolean TRUE if the given boolean is true, otherwise it will return the Boolean FALSE.
valueOf(String) - Static method in class java.lang.Boolean
Returns the Boolean TRUE if and only if the given String is equal, ignoring case, to the the String "true", otherwise it will return the Boolean FALSE.
valueOf(String, int) - Static method in class java.lang.Byte
Creates a new Byte object using the String and specified radix (base).
valueOf(String) - Static method in class java.lang.Byte
Creates a new Byte object using the String, assuming a radix of 10.
valueOf(byte) - Static method in class java.lang.Byte
Returns a Byte object wrapping the value.
valueOf(char) - Static method in class java.lang.Character
Returns an Character object wrapping the value.
valueOf(double) - Static method in class java.lang.Double
Returns a Double object wrapping the value.
valueOf(String) - Static method in class java.lang.Double
Create a new Double object using the String.
valueOf(String) - Static method in class java.lang.Float
Creates a new Float object using the String.
valueOf(float) - Static method in class java.lang.Float
Returns a Float object wrapping the value.
valueOf(String, int) - Static method in class java.lang.Integer
Creates a new Integer object using the String and specified radix (base).
valueOf(String) - Static method in class java.lang.Integer
Creates a new Integer object using the String, assuming a radix of 10.
valueOf(int) - Static method in class java.lang.Integer
Returns an Integer object wrapping the value.
valueOf(String, int) - Static method in class java.lang.Long
Creates a new Long object using the String and specified radix (base).
valueOf(String) - Static method in class java.lang.Long
Creates a new Long object using the String, assuming a radix of 10.
valueOf(long) - Static method in class java.lang.Long
Returns a Long object wrapping the value.
valueOf(String, int) - Static method in class java.lang.Short
Creates a new Short object using the String and specified radix (base).
valueOf(String) - Static method in class java.lang.Short
Creates a new Short object using the String, assuming a radix of 10.
valueOf(short) - Static method in class java.lang.Short
Returns a Short object wrapping the value.
valueOf(Object) - Static method in class java.lang.String
Returns a String representation of an Object.
valueOf(boolean) - Static method in class java.lang.String
Returns a String representing a boolean.
valueOf(char) - Static method in class java.lang.String
Returns a String representing a character.
valueOf(int) - Static method in class java.lang.String
Returns a String representing an integer.
valueOf(long) - Static method in class java.lang.String
Returns a String representing a long.
valueOf(float) - Static method in class java.lang.String
Returns a String representing a float.
valueOf(double) - Static method in class java.lang.String
Returns a String representing a double.
values() - Method in class java.util.AbstractMap
Returns a collection or bag view of this map's values.
values() - Method in class java.util.HashMap
Returns a "collection view" (or "bag view") of this HashMap's values.
values() - Method in class java.util.Hashtable
Returns a "collection view" (or "bag view") of this Hashtable's values.
values() - Method in interface java.util.Map
Returns a collection (or bag) view of the values in this Map.
Vector - Class in java.util
The Vector classes implements growable arrays of Objects.
Vector() - Constructor for class java.util.Vector
Constructs an empty vector with an initial size of 10, and a capacity increment of 0
Vector(Collection) - Constructor for class java.util.Vector
Constructs a vector containing the contents of Collection, in the order given by the collection.
Vector(int, int) - Constructor for class java.util.Vector
Constructs a Vector with the initial capacity and capacity increment specified.
Vector(int) - Constructor for class java.util.Vector
Constructs a Vector with the initial capacity specified, and a capacity increment of 0 (double in size).
VerifyError - Error in java.lang
A VerifyError is thrown if there is a security problem or internal inconsistency in a class file as detected by the "verifier."
VerifyError() - Constructor for error java.lang.VerifyError
Create an error without a message.
VerifyError(String) - Constructor for error java.lang.VerifyError
Create an error with a message.
VirtualMachineError - Error in java.lang
A VirtualMachineError or its subclasses are thrown to indicate there is something wrong with the Java Virtual Machine or that it does not have the resources needed for it to continue execution.
VirtualMachineError() - Constructor for error java.lang.VirtualMachineError
Create an error without a message.
VirtualMachineError(String) - Constructor for error java.lang.VirtualMachineError
Create an error with a message.
VOLATILE - Static variable in class java.lang.reflect.Modifier
Volatile: Field: cannot be cached.

W

wait(long, int) - Method in class java.lang.Object
Waits a specified amount of time (or indefinitely if the time specified is 0) for someone to call notify() or notifyAll() on this Object, waking up this Thread.
wait() - Method in class java.lang.Object
Waits indefinitely for notify() or notifyAll() to be called on the Object in question.
wait(long) - Method in class java.lang.Object
Waits a specified amount of time (or indefinitely if the time specified is 0) for someone to call notify() or notifyAll() on this Object, waking up this Thread.
write(int) - Method in class java.io.ByteArrayOutputStream
This method writes the writes the specified byte into the internal buffer.
write(byte[], int, int) - Method in class java.io.ByteArrayOutputStream
This method writes len bytes from the passed in array buf starting at index offset into the internal buffer.
write(int) - Method in class java.io.FilterOutputStream
This method writes a single byte of output to the underlying OutputStream.
write(byte[]) - Method in class java.io.FilterOutputStream
This method writes all the bytes in the specified array to the underlying OutputStream.
write(byte[], int, int) - Method in class java.io.FilterOutputStream
This method calls the write(int) method len times for all bytes from the array buf starting at index offset.
write(int) - Method in class java.io.OutputStream
This method writes a single byte to the output stream.
write(byte[]) - Method in class java.io.OutputStream
This method all the writes bytes from the passed array to the output stream.
write(byte[], int, int) - Method in class java.io.OutputStream
This method writes len bytes from the specified array b starting at index off into the array.
write(char[], int, int) - Method in class java.io.OutputStreamWriter
This method writes count characters from the specified array to the output stream starting at position offset into the array.
write(String, int, int) - Method in class java.io.OutputStreamWriter
This method writes count bytes from the specified String starting at position offset into the String.
write(int) - Method in class java.io.OutputStreamWriter
This method writes a single character to the output stream.
write(int) - Method in class java.io.PrintStream
This method writes a byte of data to the stream.
write(byte[], int, int) - Method in class java.io.PrintStream
This method writes len bytes from the specified array starting at index offset into the array.
write(int) - Method in class java.io.PrintWriter
This method writes a single char to the stream.
write(char[], int, int) - Method in class java.io.PrintWriter
This method writes count chars from the specified array starting at index offset into the array.
write(String, int, int) - Method in class java.io.PrintWriter
This method writes count chars from the specified String to the output starting at character position offset into the String
write(char[]) - Method in class java.io.PrintWriter
This method write all the chars in the specified array to the output.
write(String) - Method in class java.io.PrintWriter
This method writes the contents of the specified String to the underlying stream.
write(int) - Method in class java.io.Writer
This method writes a single char to the output stream.
write(char[]) - Method in class java.io.Writer
This method all the writes char from the passed array to the output stream.
write(char[], int, int) - Method in class java.io.Writer
This method writes len char from the specified array buf starting at index offset into the array.
write(String) - Method in class java.io.Writer
This method writes all the characters in a String to the output.
write(String, int, int) - Method in class java.io.Writer
This method writes len chars from the String starting at position offset.
Writer - Class in java.io
This abstract class forms the base of the hierarchy of classes that write output as a stream of chars.
Writer() - Constructor for class java.io.Writer
This is the default no-argument constructor for this class.
Writer(Object) - Constructor for class java.io.Writer
This method initializes a Writer that will synchronize on the specified Object.
writeTo(OutputStream) - Method in class java.io.ByteArrayOutputStream
This method writes all the bytes that have been written to this stream from the internal buffer to the specified OutputStream.

Y

yield() - Static method in class java.lang.Thread
Causes the currently executing thread object to temporarily pause and allow other threads to execute.

A B C D E F G H I J K L M N O P R S T U V W Y